SMART datagrid v.1 > Classes > EditOptions
If it is true, when run pasting, it will run validation in cell unit.
If forceRowValidationWhenPaste is true, it will run validation in row unit first.
Defaults to false.
grid.setOptions({
edit: {
forceRowValidationWhenPaste: true,
forceColumnValidationWhenPaste: true
}
});
grid.setEditOptions({
forceRowValidationWhenPaste: true,
forceColumnValidationWhenPaste: true
});
grid.editOptions().setForceColumnValidationWhenPaste(true);