GridView中的Yii2下拉列表筛选器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GridView中的Yii2下拉列表筛选器相关的知识,希望对你有一定的参考价值。
Put it in the columns array
[ 'attribute' => 'attribute_name', 'value' => 'attribute_value', 'filter' => html::activeDropDownList($searchModel, 'attribute_name', ArrayHelper::map(ModelName::find()->asArray()->all(), 'ID', 'Name'),['class'=>'form-control','prompt' => 'Select Category']), ],
以上是关于GridView中的Yii2下拉列表筛选器的主要内容,如果未能解决你的问题,请参考以下文章
如何在 GridView::widget、Yii2 的搜索框中使用简单的下拉列表?