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