Reputation: 9652
I want to make dorpdown pagination in yii2 gridview. I tried this in my GridView, but don't clear what should the next step I do to do.
<label>
<?=
$form->field($model, 'pagesize')
->dropDownList(
["1"=>"1","10"=>"10","25"=>"25","50"=>"50","100"=>"100"],
)->label('');
?> records per page
</label>
Upvotes: 0
Views: 2525
Reputation: 114
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $model,
'filterSelector' => '#' . Html::getInputId($model, 'pagesize'),
'columns' => [
'id',
'symbol',
'code',
'name',
.........
Upvotes: 2