SMART datagrid v.1 > Classes > GridDataSet
It will be fired if the data row is deleted by calling deleteRow.
After firing this event, onRowCountChanged event will be fired. And, just before deleting, onRowDeleting will be fired.
ds.onRowDeleted = function (ds, row) {
console.log('Data row deleted at ' + row);
};