Home

Thursday, July 21, 2022

Cara Memberikan Style Bootstrap Pada Pagination GridView Yii2

Pada config\web.php, tambahkan 

$config = [
    'container' => [
        'definitions' => [
            
\yii\widgets\LinkPager::class => \yii\bootstrap4\LinkPager::class,
            'yii\bootstrap4\LinkPager' => [
                'firstPageLabel' => 'Awal',
                'lastPageLabel'  => 'Akhir'
            ]
        ]
    ]
];

No comments:

Post a Comment