SMART datagrid v.1 > Classes > GridBase
If specify as true, when the user updates the existing grid rows or appends the rows, he can Undo/Redo cell editing.
In order to Undo/Redo DataSet change, you should specify DataSet.undoable as true. In order to provide Undo/Redo UI to the user, both properties will usually be specified as true. Please refer to Undoing Overview page.
If this property is changed, the existing grid Undo stack will be initialized. In other words, the existing edit history will not be Undone.
Defaults to false.
$("chkUndo").click = function () {
grid.setUndoable(this.checked);
ds.setUndoable(this.checked);
});