Angular ui-select仅突出显示列表中的第一选择

时间:2017-02-15 16:20:03

标签: angularjs ui-select

我在应用上以不同的方式使用ui-select。选择工作,但都有一个共同点,只有最高选择被突出显示。如果重新打开列表,我真的希望看到所选项目突出显示。除此之外有没有办法一起关闭突出显示? 这是一个示例:

<ui-select reset-search-input="false"
    id="entryGenModuleType"
    name="entryGenModuleType"
    ng-model="deForm.moduleTypeId" theme="select2" append-to-body="true"
    class="holdSelect"
    ng-change="filterSavedEntries()"
    ng-disabled=""
    title="Select Module Type">
<ui-select-match allow-clear="true"
    placeholder="">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat=" type in selectionData.moduleTypes | orderBy:'name' | filter: { name: $select.search } ">
 <span ng-bind-html="type.name"></span>
</ui-select-choices>

1 个答案:

答案 0 :(得分:1)

有同样的问题。 为我删除属性reset-search-input="false"帮助