我正在寻找制作ui-bootstrap typeahead能够选择多个逗号分隔项的方法

时间:2014-09-15 19:01:51

标签: angularjs angular-ui-bootstrap

尝试做this

之类的事情

但不是让警报框只是将逗号分隔的值放入输入字段。

1 个答案:

答案 0 :(得分:0)

好的我正在尝试ui-select2,但我不太清楚如何使用它。我将提供我作为工作类型的样本以及我尝试使select2工作的样本。

ui-bootstrap typeahead:

<input type="text" ng-model="selectedItem.value" typeahead="item.value for item in items |filter:$viewValue| limitTo:8" typeahead-on-select="updateItem()" placeholder="select Item"/>

ui-select2(无法加载数据。)

<select ui-select2 ng-model="selectedItem.value" data-placeholder="Select Item">
 <option value=""></option>
  <option ng-repeat="item.value for item in items" value:"{{item.value}}>{{item.label}}</option>
</select>