Skip to content

Instantly share code, notes, and snippets.

@kevindaus
Created August 25, 2016 19:11
Show Gist options
  • Save kevindaus/de40cc0c1cc6da03e28373130d9cde8a to your computer and use it in GitHub Desktop.
Save kevindaus/de40cc0c1cc6da03e28373130d9cde8a to your computer and use it in GitHub Desktop.
Yii2 GridPageSize
<?= 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