kl83/yii2-autocomplete-dropdown-widget

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

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Maintainers

Package info

github.com/kl83/yii2-autocomplete-dropdown-widget

pkg:composer/kl83/yii2-autocomplete-dropdown-widget

Statistics

Installs: 2 082

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

v1.0.2 2017-07-06 10:38 UTC

This package is auto-updated.

Last update: 2026-02-09 16:55:31 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 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

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('kl83\widgets\AutocompleteDropdown', [
    'source' => '/user/autocomplete-source',
    'textValue' => $model->user->fullName,
]) ?>

License

MIT License