Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据视图,它将呈现如下所示,
item1 item2 item3 item4
其中,第 1 项和第 4 项是父母,是否可以仅对这两项进行排序?即使在排序之后,子项(2 和 3)也会在其父项下吗?请说清楚。
您可以通过实现自定义 onSortHandler 来做到这一点。这是我的做法:
创建您的排序功能
函数 customOnSortHandler_1(value1, value2, sortAsc) {...}
在页面上指定列元数据时添加了一个属性
..., onSortHandler:customOnSortHandler_1, ...
将此处理程序订阅到 onSort 事件
在您的 customOnSortHandler 中,您可以做任何您想做的事情 :)