SMART datagrid v.1 > Classes > EditOptions
If it is true, when the clipboard value is the single cell value and the current row is not editing state, it will start editing after pasting.
If it is false and is not in row editing state, it will directly update the value of data field.
Defaults to true.
grid.setOptions({
edit: {
startEditWhenPaste: false
}
});
grid.setEditOptions({
startEditWhenPaste: false
});
grid.editOptions().setStartEditWhenPaste(false);