形势
大家好!我正在为我的应用程序使用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键,还可以用鼠标向外聚焦?
非常感谢!
我已经分叉了ui select,并通过在html中的ui select指令中添加blur='true'上的标记来启用此功能。如果你愿意,你可以在我等待合并我的拉取请求时使用我的存储库。
https://github.com/mattmcardle/ui-select/tree/tag_on_blur
如果您使用我的fork并希望在blur上启用标记,您的HTML代码将如下所示:
<h3>Array of objects</h3>
<ui-select multiple tagging tagging-label="new tag" tag-on-blur="true" 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>
只需创建一个指令。这将处理单击外部选项卡并输入。
angular.module('module')
.directive('tagOnBlur', function($timeout) {
return {
require: 'uiSelect',
link: function(scope, elm, attrs, ctrl) {
scope.isTab = false;
ctrl.searchInput.bind("keydown keypress", function (event) {
if(event.which === 9 || event.which === 13) {
event.preventDefault();
scope.isTab = true;
}
});
ctrl.bind('click', function (event) {
scope.isTab = true;
});
ctrl.searchInput.on('blur', function() {
if (scope.isTab){
scope.isTab = false;
return;
}
if ((ctrl.items.length > 0 || ctrl.tagging.isActivated)) {
$timeout(function() {
ctrl.searchInput.triggerHandler('tagged');
var newItem = ctrl.search;
if ( ctrl.tagging.fct ) {
newItem = ctrl.tagging.fct( newItem );
}
if (newItem) ctrl.select(newItem, true);
});
}
});
}
};
});