I'm trying to use inline editing in a grid, save/edit/cancel/delete buttons are custom, I have several validation functions for every column that need to be called before saving, I'm making a function that will be called on pressing enter on the row, however I can't seem to be able to stop it from saving even tho I return false on successfunc.
$grid.editRow(id,{
keys : true,
successfunc : function(data){
saveData(data);
return [false,""];
}
});
PS: editrules defined on each column won't help me because I want my validations to be called only on save