yii-cms/yii2-typeahead
最新稳定版本:0.2
Composer 安装命令:
composer require yii-cms/yii2-typeahead
包简介
Typeahead widget for Yii2 framework.
关键字:
README 文档
README
Typeahead widget for Yii2 framework.
<?php echo Typeahead::widget([ 'id' => 'typeahead-id', 'name' => 'typeahead-name', 'clientOptions' => [ 'displayKey' => 'value', 'templates' => [ 'suggestion' => new JsExpression("function(data){ return '<p>' + data.value + '</p>'; }"), ], ], 'events' => [ 'typeahead:selected' => new JsExpression( 'function(obj, datum, name) { window.location = datum.url; }' ), ], 'bloodhoundOptions' => [ 'remote' => [ 'url' => Url::to(['controller/action']) . '?q=%QUERY', 'ajax' => ['data' => [ 'id' => $model->id, ]], 'replace' => new JsExpression(" function(url, query) { return url.replace('%QUERY', query); } "), 'filter' => new JsExpression(" function(list) { return $.map(list, function(item) { return { value: item.name, url: item.url }; }); } "), ], ], 'options' => ['class' => 'form-control', 'placeholder' => 'Title', 'autofocus' => true], ]);
统计信息
- 总下载量: 18.02k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2015-07-01