Yii2 Chosen Select
An Yii2 chosen select extension based on Chosen jQuery plugin., (*1)
What is Chosen?
Chosen is a jQuery plugin that makes long, unwieldy select boxes much more user-friendly., (*2)
Installation
Composer
The preferred way to install this extension is through Composer., (*3)
Either run, (*4)
php composer.phar require uran1980/yii2-chosen-select "dev-master"
or add, (*5)
"uran1980/yii2-chosen-select": "dev-master"
to the require section of your composer.json
, (*6)
Usage
To activate this widget add this line to you view or layout:, (*7)
<?php echo uran1980\yii\widgets\chosen\ChosenSelect::widget(); ?>
or add as dependensy in you AssetBundle.php
:, (*8)
namespace frontend\assets;
class YourAppAsset extends \yii\web\AssetBundle
{
...
public $depends = [
'uran1980\yii\widgets\chosen\ChosenSelectAsset',
...
];
}
Author
Ivan Yakovlev, e-mail: uran1980@gmail.com, (*9)