ffsoft/yii2-multiselect

Multiple Select widget for Yii2 framework

Installs: 6 499

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 1

Type:yii2-extension

1.0.2 2020-02-03 12:35 UTC

This package is auto-updated.

Last update: 2024-04-29 04:33:35 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%'
	]
]); ?>