SMART datagrid v.1 > Classes > EditOptions
If it is true, when paste multiple cells, it will save the value by setValue instead of updateRow.
onValueChanged event will be fired whenever pasting individual cell value. And, you can provide a consistent UI by specifying the same property as updateByCell.
Defaults to false.
grid.setOptions({
edit: {
updateByCell: true,
pasteByCell: true
}
});
grid.setEditOptions({
updateByCell: true,
pasteByCell: true
});
grid.editOptions().setPasteByCell(true);