SMART datagrid v.1 > Classes > EditOptions
If it is true, when type LEFT key in the state of the location of editing caret is first in cell editor, it will move to the previous cell, and when type RIGHT key in the state of the location of editing caret is last, it will move to the next cell.
If it is false, it will not move out of the editor.
Defaults to true.
grid.setOptions({
edit: {
moveByArrowKeys: false,
useTabKey: false
}
});
grid.setEditOptions({
moveByArrowKeys: false,
useTabKey: false
});
grid.editOptions().setMoveByArrowKeys(false);