ajax - Pagination in gridview Yii2 without page reload -
i yii2 beginner. have completed of grid-view except pagination. tried use pjax can't find solution.
you have set timeout pjax (default 1000 ms). not enough , plugin reload page completely.
<?php \yii\widgets\pjax::begin(['timeout' => 10000, 'clientoptions' => ['container' => 'pjax-container']]); ?> <?= gridview::widget([ // ... configuration here ]);?> <?php \yii\widgets\pjax::end(); ?>
Comments
Post a Comment