SMART datagrid v.1 > Classes > EditOptions
If it is true, when type enter key, it will move to the next cell.
If enterToNextRow is true, it will move the next row of the same column location.
Defaults to true.
grid.setOptions({
edit: {
enterToTab: true,
enterToNextRow: true
}
});
grid.setEditOptions({
enterToTab: true,
enterToNextRow: true
});
grid.editOptions().setEnterToTab(true);