我在应用程序上以不同的方式使用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>
有相同的问题。删除属性reset-search-input="false"
帮助我