kl83 / yii2-autocomplete-dropdown-widget
Dropdown widget with autocomplete jQuery UI and ability to send in form identifier of the selected item.
Installs: 1 399
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.0
- yiisoft/yii2: ^2.0
- yiisoft/yii2-jui: ^2.0
This package is auto-updated.
Last update: 2024-11-09 14:06:17 UTC
README
Dropdown widget with autocomplete jQuery UI and ability to send in form identifier of the selected item.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require kl83/yii2-autocomplete-dropdown-widget ~1.0.0
or add
"kl83/yii2-autocomplete-dropdown-widget": "~1.0.0"
to the require section of your composer.json file.
Widget options
Usage
<?= $form->field($model, 'createdBy')->widget('kl83\widgets\AutocompleteDropdown', [ 'source' => '/user/autocomplete-source', 'textValue' => $model->user->fullName, ]) ?>
License
MIT License