您好,感谢您详细的描述,问题已经找到,是由于列的隐藏和排序引起的问题,只需要更改一下选择点即可,参考代码:
- switch (cmd) {
- case 'addup':
- view.sourceCollection.splice(rowsd+1,0,clones);
- view.refresh();
- grid.collectionView.refresh();
- var sel = grid.selection;
- grid.selection = new wijmo.grid.CellRange(0, 0, 0, 0);
- grid.selection = new wijmo.grid.CellRange(sel.row, sel.col, sel.row2, sel.col2);
- break;
复制代码 如图:
完整示例请参考附件Demo。
|