SMART datagrid v.1 > Classes > EditOptions
If it is true, even if there are multiple cells in the selected cell area, it will copy only the value of focused cell.
If it is false, it will copy all cells contained in the selection area to clipboard.
Defaults to false.
grid.setOptions({
edit: {
singleCopy: true,
singlePaste: true
}
});
grid.setEditOptions({
singleCopy: true,
singlePaste: true
});
grid.editOptions().setSingleCopy(true);