SMART datagrid v.1 > Classes > EditOptions
If it is true, the user can run Undoing, Redoing by typing Ctrl+Z, Ctrl+Y keys.
Even if undoable or undoable is true, if this property is false, the user cannot run Undoing, Redoing. You can also use Undoable Function of data set regardless of UI.
Defaults to true.
grid.setOptions({
edit: {
undoable: true
}
});
grid.setEditOptions({
undoable: true
});
grid.editOptions().setUndoable(true);