yii2在视图GridView插件添加字段下拉筛选

在gridview中的columns添加代码

echo GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel, 'columns' => [   [     'attribute' => '审核状态 ',     'value' => function ($model) {       return $model->authName;     },     'filter' => Html::activeDropDownList($searchModel, 'is_auth', $searchModel->isauthList, ['prompt' => '全部', "class" => "form-control "]     )   ],
]]);

  

原文地址:https://www.cnblogs.com/jiangxiaochang/p/6515545.html