{use class="yii\helpers\Url"} {use class="yii\grid\GridView"} {use class="yii\widgets\Pjax" type="block"}

{Pjax id="user-list-modal" enablePushState=false timeout=false enableReplaceState=false} {GridView::widget([ 'id' => 'user-list-gridview', 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'layout'=> \app\helpers\UserGrid::getLayout(), 'tableOptions' => [ 'class' => 'table table-striped table-bordered table-user', 'style' => 'background:#fff;min-width:700px;' ], 'columns' => [ ['class' => 'yii\grid\SerialColumn'], 'username', 'first_name', [ 'attribute'=>"roleName", 'format'=>'raw', 'value'=> \app\helpers\UserGrid::roles() ], 'phone_number', 'email', [ 'template'=> \app\helpers\UserGrid::actionTemplate(), 'class' => 'yii\grid\ActionColumn', 'contentOptions' => ['class' => 'text-center'], 'headerOptions' => ['style' => 'width:10%'], 'buttons'=>[ "view" => \app\helpers\UserGrid::view(), "update" => \app\helpers\UserGrid::update(), "delete" => \app\helpers\UserGrid::delete() ] ] ] ])} {/Pjax}