Hi,
I am using the the below code to update all the edit rows of list grid.
listGrid.saveAllEdits(null, function (rowNum, colNum, editCompletionEvent) {
alert("DONE");
});
If all the rows updated sucessfully then the alert "Done" is displaying. But if some rows has some validation error then from DMI layer (java code) set the dsResponse.setFailure() and returning the dsresponse.
Whenver the response are mixed (success and failure) alert is not displaying.
FYI, I have also used handleError in DS but still I can not find out the response.
Please let me know, how to get the response for all the updated records (response may be success or failure)
I am using the the below code to update all the edit rows of list grid.
listGrid.saveAllEdits(null, function (rowNum, colNum, editCompletionEvent) {
alert("DONE");
});
If all the rows updated sucessfully then the alert "Done" is displaying. But if some rows has some validation error then from DMI layer (java code) set the dsResponse.setFailure() and returning the dsresponse.
Whenver the response are mixed (success and failure) alert is not displaying.
FYI, I have also used handleError in DS but still I can not find out the response.
Please let me know, how to get the response for all the updated records (response may be success or failure)
Comment