ffsoft / yii2-multiselect
Multiple Select widget for Yii2 framework
Package info
github.com/ffsoft/yii2-multiselect
Type:yii2-extension
pkg:composer/ffsoft/yii2-multiselect
1.0.2
2020-02-03 12:35 UTC
Requires
- bower-asset/multiple-select: ~1.2.2
- yiisoft/yii2: ~2.0.0
- yiisoft/yii2-bootstrap4: ~2.0.0
This package is auto-updated.
Last update: 2026-03-01 00:30:27 UTC
README
Yii2 widget for Multiple Select JQuery plugin
This is a simple Yii2 widget implementing Multiple Select JQuery plugin by Zhixin Wen.
Example usage:
<?= $form->field($model, '...')->widget(MultiSelect::class, [ 'items' => [...], 'clientOptions' => [ /** * If we don't set width by CSS or JS, the input will most likely be very short */ 'width' => '100%' ] ]); ?>