SMART datagrid v.1 > Classes > EditOptions
If it is true, the user can get the data of clipboard and paste in the selected cell area by ctrl+v keys during run time.
Defaults to true.
grid.setOptions({
edit: {
pasteEnabled: true,
copyEnabled: true
}
});
grid.setEditOptions({
pasteEnabled: true,
copyEnabled: true
});
grid.editOptions().setPasteEnabled(true);