SMART datagrid v.1 > Classes > DataSet
If it is true, when add, delete or change the data row, it will change the State of data row.
Defaults to true.
$('#addRows').click(function () {
// When adding this row, it has stopped to set the state as "created".
dataset.setCheckStates(false);
try {
for (var i = 0; i < 10; i++) {
dataset.appendRow([v1, v2, v3]);
}
} finally {
dataset.setCheckStates(true);
}
};