Skip to content

kl83/yii2-autocomplete-dropdown-widget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yii2 Autocomplete dropdown widget

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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages