我有一个表格,在到达下拉列表ui-select
之前,选项卡按钮可以正常工作。我需要按两次以跨过下拉选择选项。有什么方法可以通过按单个Tab键选择下拉菜单?
这里有ui-select
的代码:
<ui-select ng-model="requirement.Priority" theme="bootstrap">
<ui-select-match placeholder="Priority">{{$select.selected.Name}}</ui-select-match>
<ui-select-choices repeat="item.Name as item in priorities | filter: $select.search">
<div ng-bind-html="item.Name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>