SMART datagrid v.1 > Classes > GridBase
It will be fired when Commit row editing.
If throw an exception by calling throwValidationError within this event handler, editing committing will be discontinued, and an error message will be displayed according to the settings.
Before this event, onValidateCell event will be fired in each cell.
grid.onValidateRow = function (grid, row, inserting, values) {
DataLudi.throwValidationError(DataLudi.ValidationLevel.ERROR, 'message');
});