2

是否有可能以某种方式将已经摸索的选项传递给 angular ui-select,例如 jquery select2 Grouping results in Select2?对我来说不可能使用group-by,因为有些选项没有父选项。

[     
      {id: 3, text: "Item name 3 without parent."},
      {text: "Group name", children: [
          {id: 1, text: "Item name 1"}, 
          {id: 2, text: "Item name 2"}
      ]}
    ]
4

1 回答 1

0

您可能已经解决了这个问题,但供将来参考:

当某些元素没有父元素时,select.ui将为它们创建一个无名组并显示在列表的开头。所以你可以在这种情况下使用 group-by 。

于 2015-01-12T13:54:45.963 回答