我需要能够根据特定条件取消Cell Edit操作。我正在使用beforeSaveCell
事件来实现此目的。我可以更改单元格的值但不能拒绝新输入的值并保留旧值。请帮帮我......
beforeSaveCell: function (rowid, celname, value, iRow, iCol) {
if(some_condition)
return value;
else
//cancel the edit operation, how?
}
谢谢