anyhon/yii2-multiselect-widget

Multiple Select widget for Yii2 framework

1.0 2019-04-13 20:31 UTC

This package is auto-updated.

Last update: 2020-01-13 21:15:37 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%'
	]
]); ?>