情况
大家好!我正在为我的应用程序使用Angular ui-select以便从数据库中选择用户。如果用户不在列表中,则可以使用标记来输入新条目。
通过写入名称并按 ENTER 或 TAB,新条目将保存为新标签。
除了一件小事,一切都很好:如果我用鼠标集中注意力,我会丢失我输入的输入,这对用户不太友好。
代码
<h3>Array of objects</h3>
<ui-select multiple tagging tagging-label="new tag" ng-model="multipleDemo.selectedPeople" theme="select2" ng-disabled="disabled" style="width: 800px;">
<ui-select-match placeholder="Select person...">{{$item.name}} <{{$item.email}}></ui-select-match>
<ui-select-choices repeat="person in people | propsFilter: {name: $select.search, age: $select.search}">
<div ng-bind-html="person.name | highlight: $select.search"></div>
<small>
email: {{person.email}}
age: <span ng-bind-html="''+person.age | highlight: $select.search"></span>
</small>
</ui-select-choices>
</ui-select>
<p>Selected: {{multipleDemo.selectedPeople}}</p>
柱塞
http://plnkr.co/edit/7fSAKmj3pLeeTaid4pMH?p=preview
问题
我如何设法将输入文本保存为新标签,不仅通过按 ENTER,还通过鼠标聚焦?
非常感谢!