1
In this plunk我有一個包含名稱的列表的ui-選擇。我需要允許用戶輸入列表中的名稱或不在列表中的名稱。在ui中選擇一個不在列表中的值
如果我嘗試輸入一個不在列表中的名稱,則ui-select將自動使用列表中最接近的值重新計算該值。
有沒有辦法讓一個值不在列表中?
HTML
<ui-select ng-model="ctrl.person.selected" theme="bootstrap">
<ui-select-match>{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="item in ctrl.people | filter: $select.search">
<div ng-bind-html="item.name | highlight: $select.search"></div>
<small ng-bind-html="item.email | highlight: $select.search"></small>
</ui-select-choices>
</ui-select>