SMART datagrid v.1 > Classes > DataSet
If it is true, when deleting the row, it will completely delete the CREATED row.
If softDeleting is true, when deleting the rows by GridDataSet.deleteRow, it will not actually delete the rows of which row state is DataRowState.CREATED and change the state as CREATE_AND_DELETED. However, if specify this property value as true, it will actually delete the rows.
Defaults to false.
$('#deleteRows').click(function () {
dataset.setDeleteCreated(true);
for (var i = 0; i < 10; i++) {
dataset.deleteRow(i);
}
};