如何取消jqGrid单元格编辑操作

时间:2014-08-01 22:08:45

标签: jquery jqgrid

我需要能够根据特定条件取消Cell Edit操作。我正在使用beforeSaveCell事件来实现此目的。我可以更改单元格的值但不能拒绝新输入的值并保留旧值。请帮帮我......

beforeSaveCell: function (rowid, celname, value, iRow, iCol) {
     if(some_condition)
         return value;
     else
         //cancel the edit operation, how?
}

谢谢

1 个答案:

答案 0 :(得分:1)

您似乎对保存的值进行了某种验证。您可以在custom_func中使用editrulescustom: true属性一起使用吗?