我正在使用選擇列表kendo-drop-down-list
以及k-filter="'contains'"
來過濾列表。選擇列表在ng-repeat
。問題是當我過濾一個列表並選擇一個特定選項時,ng-repeat
中的其他列表將自動通過選定選項進行過濾。Kendo-UI Kendo-k-filter問題下拉列表
例如,當我篩選字符串"foo"
的一個下拉列表並從列表中選擇"foo123"
。其他下拉菜單會自動過濾字符串"foo123"
。
<select kendo-drop-down-list id="LookUp{{$index}}"
k-data-text-field="'Text'"
k-data-value-field="'Value'"
k-data-source="enrichedValueSource"
ng-if="data.lookUp.length"
ng-model="item.EnrichId"
k-index="'{{item.EnrichId}}'"
k-filter="'contains'"
class="full-width m-b form-control" required ng-change="itemChange(item)">
</select>
該問題的圖像。 1 Drop-down with search Text 2. 2nd Drop-down automatically binds for search text in 1st Drop-Down