jqGrid row update [duplicate]
Possible Duplicate:
jqGrid row update
I am looking for an ASP.NET MVC 2 sample with a jqGrid update/insert to a database. How does the row gets posted to the s开发者_运维知识库erver?
it's done by ajax. it will call the page with get/post request, and pass the variables in
Probably the answer will help you. You can compare it with this one which made for ASMX web services instead of ASP.NET MVC. You should return new rowid from the controller action in case of "add" operation. It's important mostly in the case of usage reloadAfterSubmit:false option of the form editing.
精彩评论