maddoger / yii2-selectize
Selectize.js widget for the Yii 2 framework
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/selectize: ~0.12
- yiisoft/yii2: ~2.0
This package is not auto-updated.
Last update: 2024-10-26 16:20:48 UTC
README
Installation
The preferred way to install this extension is through composer.
Either run
$ composer require maddoger/yii2-selectize:~1.0
or add
"maddoger/yii2-selectize": "~1.0"
to the require
section of your composer.json
file.
Usage
Selectize has lots of configuration options. For further information, please check the Selectize plugin website.
Text input widget
To use text input widget add the following to the view
use maddoger\widgets\SelectizeTextInput; echo SelectizeTextInput::widget([ 'name' => 'tags', 'value' => 'love, this, game', 'clientOptions' => [ // ... ], ]);
Dropdown list widget
To use dropdown list widget add the following to the view
use maddoger\widgets\SelectizeDropDownList; echo SelectizeDropDownList::widget([ 'name' => 'tags', 'value' => ['love', 'this', 'game'], 'clientOptions' => [ // ... ], ]);