Hello i'm using jqGrid with the type "clientSide" and plan to send editted data back to the server.
With a $.ajax-Request i receive an object with sub-objects as JSON from the server and can directly work with them in javascript, e.g. add the sub-objects to the grid, and display other properties in input-fields etc... After the user editted some data within the grid, i will send all data back to the server with another ajax-call. At first, i tried out to send a JSON-Object, but all sub-objects were flatten to a string "object [Object]". So i tried out the option "processData:false". But with this option the whole POST-Data are empty (debugged with firebug). I'm thinking about putting together all data from the grid as a large query-string. But rather i would it do with native jquery-things. Can anybody give me some hints? Thanks a lot!