SMART datagrid v.1 > Classes > EditOptions
If it is true, when enter Enter or Tab key in the last cell of editing row, it will Commit the row.
In order to commit only cell instead of row, you can use hideOnLastCell(ver1.3).
Defaults to false.
grid.setOptions({
edit: {
commitOnLastCell: true
}
});
grid.setEditOptions({
commitOnLastCell: true
});
grid.editOptions().setCommitOnLastCell(true);