pzavoli71 / yii2-autocomplete-dropdown-widget
Dropdown widget with autocomplete jQuery UI and ability to send in form identifier of the selected item. Derived from k183 autocomplete
dev-master
2023-06-27 14:44 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2: ^2.0
- yiisoft/yii2-jui: ^2.0
This package is not auto-updated.
Last update: 2025-04-01 23:03:10 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 pzavoli71/yii2-autocomplete-dropdown-widget ~1.0.0
or add
"pzavoli71/yii2-autocomplete-dropdown-widget": "~1.0.0"
to the require section of your composer.json file.
Widget options
Option | Description |
---|---|
(string) source | Url to load autocomlete source in JSON-format. Example: [{"id": id, "label": "some text"}, ... ]. |
(array) autocompleteOptions | JQueryUI Autocomplete widget options. |
(string) textValue | Initial text-input value. |
(boolean) ajaxGlobal | "global" property value of ajax request, read more. |
Usage
<?= $form->field($model, 'createdBy')->widget('pzavoli71\widgets\AutocompleteDropdown', [ 'source' => '/user/autocomplete-source', 'textValue' => $model->user->fullName, ]) ?>
License
MIT License