Jqgrid Save Method Doesnt Fire Up After Error?
I have a grid which does check for duplicate Number in the grid. Which i acheived successfully however after my program checks for duplicate barcode i restore the row and try to ed
Solution 1:
Finally Found a Solution The jqGrid library doesnt allow to edit the row on error is because they unbind the enter key event in save function . The Fix Remove this line of code from the library itself and it worked :
$(ind).removeClass("jqgrid-new-row").unbind("keydown");
Hope it helps to someone !!!
Post a Comment for "Jqgrid Save Method Doesnt Fire Up After Error?"