Skip to content

Instantly share code, notes, and snippets.

@sorokadima
Last active August 10, 2020 08:16
Show Gist options
  • Save sorokadima/16e9d1237e3c3f2029b837953e463cfd to your computer and use it in GitHub Desktop.
Save sorokadima/16e9d1237e3c3f2029b837953e463cfd to your computer and use it in GitHub Desktop.
Yii2 dropdown
<?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