SMART datagrid v.1 > Classes > EditOptions
If it is true, when type "Ctrl+'(quotation marks)" key in the state of not displaying the editor in editing row, it will get the cell value of the previous row, copy it, and move to the next cell.
Defaults to true.
grid.setOptions({
edit: {
useCopyKey: false,
enterToTab: true
}
});
grid.setEditOptions({
useCopyKey: false,
enterToTab: true
});
grid.editOptions().setUseCopyKey(true);