在捕捉事件 beforeCellEdit 时,是否有可能以某种方式阻止单元格进入编辑模式?
beforeEditCell: function (rowid, cellname, value, irow, icol) {
if (cellname != 'aSpecificCol')
return;
var grid = $("#grid");
if (aCondition == "something")
grid.setColProp('aSpecificCol', { editable: false });
else
grid.setColProp('aSpecificCol', { editable: true });
}
事件触发,但列属性的设置似乎没有改变编辑模式。