SMART datagrid v.1 > Classes > EditOptions
If it is true, when operate clipboard paste, if the clipboard data is multiple rows and beyond the range based on the current row, it will update the existing rows and append the rest as new rows.
First, pasteEnabled should be set as true.
Defaults to true.
grid.setOptions({
edit: {
pasteEnabled: true,
enableAppendWhenPaste: true
}
});
grid.setEditOptions({
pasteEnabled: true,
enableAppendWhenPaste: true
});
grid.editOptions().setEnableAppendWhenPaste(true);