How to disable pagination in Yii2 GridView? I am not using any kartik gridview. I am using the default Yii2 Gridview.
Try setting pagination (in your controller) to false, like this:
$dataProvider = new ActiveDataProvider([
'query' => SomeModelClass::find(),
'pagination' => false,
]);
1) If you have a limited number of models, use ArrayDataProvider and get all models, instead of ActiveDataProvider.
2) You can specify it in the view, the layout
property of the GridView can be set to {summary}{items}
. The default one includes {pager}
too.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With