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.
You can also use below code
[     'attribute'=>'attribute name',     'filter'=>array("ID1"=>"Name1","ID2"=>"Name2"), ],   OR
[     'attribute'=>'attribute name',     'filter'=>ArrayHelper::map(Model::find()->asArray()->all(), 'ID', 'Name'), ], 
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With