kl83/yii2-autocomplete-dropdown-widget
最新稳定版本:v1.0.2
Composer 安装命令:
composer require kl83/yii2-autocomplete-dropdown-widget
包简介
Dropdown widget with autocomplete jQuery UI and ability to send in form identifier of the selected item.
README 文档
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
| 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
统计信息
- 总下载量: 1.98k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-07-06