回复 1楼yaochenglong的帖子
感谢您的反馈。
根据您的描述,您想实现的是多列排序的功能。
cv.sortDescriptions.push多个列,就可以实现多列同时排序。
代码参考:
- grid.beginUpdate();
- view = new wijmo.collections.CollectionView(array);
- // initialize the grid
- var sd = new wijmo.collections.SortDescription('离店日期', true);
- var id=new new wijmo.collections.SortDescription('序号', true);
- view.sortDescriptions.push(sd);
- view.sortDescriptions.push(id);
- view.refresh();
- grid.endUpdate();
复制代码 |