kinghip/yii2-autocomplete-dropdown-widget

Dropdown widget with autocomplete jQuery UI and ability to send in form identifier of the selected item.

1.0.4 2019-07-21 10:45 UTC

This package is not auto-updated.

Last update: 2024-05-07 12:08:13 UTC


README

Latest Stable Version Total Downloads License

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 kinghip/yii2-autocomplete-dropdown-widget ~1.0.0

or add

"kinghip/yii2-autocomplete-dropdown-widget": "~1.0.0"

to the require section of your composer.json file.

Widget options

OptionDescription
(string) sourceUrl to load autocomlete source in JSON-format.
Example: [{"id": id, "label": "some text"}, ... ].
(array) autocompleteOptionsJQueryUI Autocomplete widget options.
(string) textValueInitial text-input value.
(boolean) ajaxGlobal"global" property value of ajax request, read more.

Usage

<?= $form->field($model, 'createdBy')->widget('kl83\widgets\AutocompleteDropdown', [
    'source' => '/user/autocomplete-source',
    'textValue' => $model->user->fullName,
]) ?>

License

MIT License