I'm looking at this documentation and wonder how do you add additional restful POST data when submitting to the server then remove a jqgrid row when success but not remove row when failed.
http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3aform_editing#delgridrow
I also saw this example but I'm not getting it on restful post. jqGrid (Delete row) - How to send additional POST data?
Thanks...
formatter: 'actions',
formatoptions: {
keys: false, editbutton: false,
delOptions: {
url: jqgridWebUrl,
mtype: 'POST',
???
}
}
mtype: 'POST', but write about RESTful services which use HTTP DELETE. Which kind of data you need to send and in which way exactly? - Oleg