SMART datagrid v.1 > Classes > EditOptions
If it is true, when commit row editing, if the entered value of the entire rows is not different from the existing value, it will not commit but ignore.
Defaults to false.
grid.setOptions({
edit: {
checkDiff: true,
checkCellDiff: false
}
});
grid.setEditOptions({
checkDiff: true,
checkCellDiff: false
});
grid.editOptions().setCheckDiff(false);