SMART datagrid v.1 > Classes > EditOptions
If it is true, when operate cell moving by TAB key or ENTER key within the selection area, it will not move out of the selection area.
If it is false, the selection area will be released and the cell focus will move. If it is the single selection area, it will move out unconditionally.
Defaults to true.
grid.setOptions({
edit: {
moveInSelection: false,
moveByArrowKeys: false,
useTabKey: false
}
});
grid.setEditOptions({
moveInSelection: false,
moveByArrowKeys: false,
useTabKey: false
});
grid.editOptions().setMoveInSelection(false);