SMART datagrid v.1 > Classes > GridBase
It will be fired when the user types ctr+del keys to delete the selected row or calls deleteSelection.
If explicitly return false within this event, Deleting will be cancelled.
grid.onDeleting = function (grid, rows) {
if (!$('#deletable')[0].checked) {
return false;
}
}