How can I use a simple Dropdown list in the search box of GridView::widget, Yii2?

washiur17 picture washiur17 · Mar 24, 2015 · Viewed 50.7k times · Source

I am trying to make a dropdown list in the search box of a GridView::widget, Yii2 for searching related data. So, how can I create a simple dropdown list in the search box of GridView::widget, Yii2 framework?

Thanks.

Answer

Chinmay Waghmare picture Chinmay Waghmare · Mar 24, 2015

Add this in Gridview 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']),
],

Change values according to your attributes.