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