角度 UI 选择多个隐藏选定



是否可以在多选ng-select隐藏某些选定项?

与多个用户(包括我自己)一起创建活动。我想让自己在模型中保持自己,但我不想在 ui-select-match 中显示自己。

我尝试在ui-select-match上使用ng-hide,但没有成功。

<ui-select multiple ng-model="event.users" theme="bootstrap">
   <ui-select-match placeholder="Select users...">{$ $item.username $}</ui-select-match>
   <ui-select-choices repeat="user in users">
      <div ng-bind-html="user.username" ng-show="user.id != auth.id"></div>
   </ui-select-choices>
</ui-select>
我不知道

你怎么能隐藏它,但你可以禁止删除自己:

ui-lock-choice="$item.id == auth.id"

JSFiddle 上的演示

相关内容

  • 没有找到相关文章

最新更新