philippfrenzel / yii2bsduallistbox
Yii2 Bootstrap Duallistbox Widget
Installs: 374
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.5.0
- bower-asset/bootstrap-duallistbox: 3.*
- yiisoft/yii2: *
- yiisoft/yii2-jui: *
Requires (Dev)
This package is not auto-updated.
Last update: 2024-11-04 13:40:06 UTC
README
yii2 bootstrap-duallistbox wrapper of: https://github.com/istvan-ujjmeszaros/bootstrap-duallistbox
For plugin options, pls. check out the site from the plugin creator
Yii2 Extension by philipp@frenzel.net
Installation
Package is although registered at packagist.org - so you can just add one line of code, to let it run!
add the following line to your composer.json require section:
"philippfrenzel/yii2bsduallistbox":"*",
or run:
$ php composer.phar require philippfrenzel/yii2bsduallistbox "*"
And ensure, that you have the following plugin installed global:
php composer.phar global require "fxp/composer-asset-plugin:~1.0"
Changelog
04-02-2017 Initial upload
Usage
Quickstart Looks like this:
use net\frenzel\yii2bsduallistbox\yii2bsduallistbox; ... <?php $options = [ 'multiple' => true, 'size' => 20, ]; // echo Html::listBox($name, $selection, $items, $options); echo yii2bsduallistbox::widget([ 'name' => $name, 'selection' => $selection, 'items' => $items, 'options' => $options, 'clientOptions' => [ 'moveOnSelect' => false, 'selectedListLabel' => 'Selected Items', 'nonSelectedListLabel' => 'Available Items', ], ]); ?>