lawiet / yii2-multiselect
The yii2-multiselect is a Yii 2 wrapper for [Multiselect](http://loudev.com/).
Installs: 249
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Language:JavaScript
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
- yiisoft/yii2-bootstrap: ~2.0.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2025-03-29 00:33:46 UTC
README
Install
Via Composer
$ composer require "lawiet/yii2-multiselect:~1.0.1"
or add
"lawiet/yii2-multiselect": "~1.0.1"
to the require section of your composer.json
file.
Usage
On your view file.
<?php use lawiet\multiselect\MultiSelectBoxWidget; ?> <?= MultiSelectBox::widget([ 'options' => [ 'multiple' => 'multiple', ], 'data' => $cities, 'model' => $model, 'attribute' => 'cities', ]) ?>
For more options, visit: http://loudev.com/