3

我浏览了很多,但找不到一个可行的解决方案。我有一个 ui-select 多选UI-SELECT。通过使用 'tagging' 和 'tagging-label' 属性,我们可以将输入自定义标签添加到列表中。这个plunker给出了例子。

<ui-select multiple tagging tagging-label="(custom 'new' label)" ng-model="multipleDemo.colors" title="Choose a color">
    <ui-select-match placeholder="Select colors...">{{$item}}</ui-select-match>
    <ui-select-choices repeat="color in availableColors | filter:$select.search">
      {{color}}
    </ui-select-choices>
  </ui-select>

当我们键入时,如果“自定义标签”建议显示在列表顶部。如何让它出现在列表的底部?

示例:当键入 g 时,下拉菜单中显示的选项为

[ g(custom 'new' label), Green, Magenta ]

但我希望订单为

[ Green, Magenta, g(custom 'new' label) ]
4

1 回答 1

0

根据文档,如果不修改angular-ui源代码,似乎没有任何方法可以做到这一点。一种可能的解决方法是设置tagging-label="false",这将删除“新”标签选项。

如果您不想要该选项,这是可以接受的,当您试图将其放在选项列表中时可能就是这种情况。

于 2015-10-19T17:53:10.420 回答