SMART datagrid v.1 > Classes > GridBase
It will be fired just after starting row updating when the user starts cell editing or calls edit.
In the case that the user starts input in a row not being edited to start row editing, the event will be fired twice. An event will be fired first to determine whether to enable input, and editor parameter will be transferred to true at this point. Later, the event will be fired again to determine whether to actually enable row editing.
If explicitly return Boolean false within this event handler, it will not start row updating.
If normally start row updating, onUpdateStarted event will be fired.
grdMain.onUpdating = function (grid, rowIndex, editor) {
if (!document.getElementById('chkUpdate').checked) {
return false;
}
}