Last active
August 10, 2020 08:16
-
-
Save sorokadima/16e9d1237e3c3f2029b837953e463cfd to your computer and use it in GitHub Desktop.
Yii2 dropdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
[ | |
'attribute' => 'foo', | |
'value' => 'foo', | |
'label' => Yii::t('adminpanel', 'Foo'), | |
'filter' => Foo::getFooList(), | |
'filterType' => GridView::FILTER_SELECT2, | |
'filterOptions' => ['style' => 'min-width: 85px'], | |
'filterWidgetOptions' => [ | |
'options' => ['prompt' => ''], | |
'pluginOptions' => [ | |
'allowClear' => true, | |
'width' => 85, | |
], | |
], | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment