xuehf_hz 发表于 2019-8-23 23:02:06

关于锁定列获得焦点的问题

表格有第1列第2列第3列第4列
第2列,第3列是锁定的,
设置了回车移到下一个单元格
spread1.AddKeyMap(13, false, false, false, function () { var ss = spread1; ss.MoveToNextCell(); });
现在希望在第1列回车后,直接跳到第4列,而不是跳到第2列,再跳到第3列
也就是希望回车把锁定列跳过去

dexteryao 发表于 2019-8-26 10:40:38

您好,现在没有方法可以移动是直接跳过locked的单元格。可以在事件中判断如果是锁定的继续move
This method moves the active cell one cell to the right. If the cell is at the end of the row, it moves the active cell down to the first cell in the next row. This will cause the onActiveCellChanging, onActiveCellChanged, and onSelectionChanged events to occur. This method does not cause a postback to occur.

页: [1]
查看完整版本: 关于锁定列获得焦点的问题