I am having an issue with the jqGrid. Here is the scenario.
- I have a jqgrid with form edit set to true
- On click of the submit button I need to pass additional parameters to the postData, one of which is an array itself.
I am using the onClickSubmit event to add values to the postdata like so
postdata.param1="1"; postdata.param2= [ { "a":1, "b":2 } ]
The issue is very similar to Post Nested Object to Spring MVC controller using JSON
and i have implemented the same from my pojo class and the front end side as well.
But I still get the error.
Any suggestions?
Sriram