Gridview pagination

Hello there,

I’ve a typical (out-of-the-box) Gridview; it works well but it renders something ugly its pagination:

Screenshot from 2022-12-12 07-43-01

The actual version of Yii2 with advanced template is 2.0.45 with BS5: ~2.0.2.

I’d like to render a pagination like kartik-v/yii2-grid, that renders nice:

Screenshot from 2022-12-12 07-48-05

Any clue?

Thank you,

S.

Add to your GridView widget config

'pager' => ['class' => \yii\bootstrap5\LinkPager::class],
6 Likes

Awesome.

Thank you, Bizley!

even better:

'container' => [
   'definitions' => [
      \yii\widgets\LinkPager::class => \yii\bootstrap5\LinkPager::class,
   ],
],