Created
August 25, 2016 19:11
-
-
Save kevindaus/de40cc0c1cc6da03e28373130d9cde8a to your computer and use it in GitHub Desktop.
Yii2 GridPageSize
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?= GridPageSize::widget(['pjaxId'=>'myAwesomeGridViewContainer']) ?> | |
<?php | |
Pjax::begin([ | |
'id'=>'myAwesomeGridViewContainer', | |
]) | |
?> | |
<?= | |
GridView::widget([ | |
'id'=>'theGrid', | |
'dataProvider' => $dataProvider, | |
'filterModel' => $searchModel, | |
'columns' => [ | |
['class' => 'yii\grid\SerialColumn'], | |
'username', | |
'password', | |
], | |
]); | |
?> | |
<?php Pjax::end() ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment