yii2mod / yii2-chosen-select
Chosen Select Widget based on Chosen jQuery plugin
Installs: 96 889
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 3
Forks: 7
Open Issues: 1
Type:yii2-extension
Requires
- bower-asset/drmonty-chosen: >=1.4
- yiisoft/yii2: *
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-29 04:30:58 UTC
README
Chosen Select Widget based on Chosen jQuery plugin chosen
Installation
The preferred way to install this extension is through composer.
Either run
composer require yii2mod/yii2-chosen-select
or add
"yii2mod/yii2-chosen-select": "^1.0"
to the require section of your composer.json.
Usage
- Usage with ActiveForm and model
echo $form->field($model, 'subject')->widget(\yii2mod\chosen\ChosenSelect::class, [ 'items' => [ 'first' => 'First', 'second' => 'Second' ], ]);
- Usage without a model
echo \yii2mod\chosen\ChosenSelect::widget([ 'name' => 'select', 'items' => BooleanEnum::listData(), 'options' => [ 'width' => '95%' ] ]);
Select Options
You can find them on the options page
Support us
Does your business depend on our contributions? Reach out and support us on Patreon. All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.