在angular-ui-select多选模式下禁用所选选项

时间:2016-02-18 06:41:10

标签: angularjs select multiple-select ui-select angular-ui-select

ui-select多个模式中,选择列表中删除了选定的选项(也在源代码中检查过),但我只需要禁用所选的选项,如下所示,而不是删除。

enter image description here

以上图片来自chosenjs

有一个选项ui-disable-choice可以禁用这些选项,但它只是让选择完全无法选择。

<ui-select-choices ui-disable-choice="person.name=='Adam'" repeat="person in people">
  <div ng-bind-html="person.name"></div>
</ui-select-choices>

那么,如何使选定的选项出现在选项中但禁用?

plnkr示例。

1 个答案:

答案 0 :(得分:1)