isack999/yii2-tagsinput
Composer 安装命令:
composer require isack999/yii2-tagsinput
包简介
The yii2-tagsinput is a Yii 2 wrapper for [bootstrap-tagsinput](https://github.com/timschlechter/bootstrap-tagsinput) with [typeahead.js](https://twitter.github.io/typeahead.js/)
README 文档
README
Install
Via Composer
$ composer require isack999/yii2-tagsinput
or add
"isack999/yii2-tagsinput": "*"
to the require section of your composer.json file.
Usage
On your view file.
<?php use avikarsha\tagsinput\TagsinputWidget; ?> <?= $form->field($model, 'tags')->widget(TagsinputWidget::classname(), [ 'clientOptions' => [ 'trimValue' => true, 'allowDuplicates' => false ] ]) ?> <?php echo $form->field($model, 'places')->widget(TagsinputWidget::classname(), [ 'clientOptions' => [ "itemValue" => 'name', "itemText" => 'name', ], 'typeaheadOptions' => [ 'highlight' => true, ], 'dataset' => [ [ 'remote' => [ 'url' => Url::to(['get-countries']). '?q=%QUERY', 'wildcard' => '%QUERY' ], 'datumTokenizer' => "Bloodhound.tokenizers.obj.whitespace('name')", 'displayKey' => 'name', 'limit' => 10, 'templates' => [ 'header' => '<h3 class="name">Country</h3>' ] ], [ 'remote' => [ 'url' => Url::to(['get-cities']). '?q=%QUERY', 'wildcard' => '%QUERY' ], 'datumTokenizer' => "Bloodhound.tokenizers.obj.whitespace('name')", 'displayKey' => 'name', 'limit' => 10, 'templates' => [ 'header' => '<h3 class="name">City</h3>' ] ], [ 'remote' => [ 'url' => Url::to(['get-states']). '?q=%QUERY', 'wildcard' => '%QUERY' ], 'datumTokenizer' => "Bloodhound.tokenizers.obj.whitespace('name')", 'displayKey' => 'name', 'limit' => 10, 'templates' => [ 'header' => '<h3 class="name">State</h3>' ] ] ] ]) ?>
For more options, visit: http://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2017-11-05