Hi,
I am sending the updateList from the grid getChanges to my Controller.
In Controller I am getting the JSONArray and when I iterate I am getting a "String" object that is essentially the JSONArray again.
What is the most efficient way to get the "updateList" to java Map or something I can extract key/value in my Controller.
Thanks a lot for your help.
Just additional info: I am not using ajax calls but rather pass the updateList as hidden variable from the jsp page to the controller.
I see in debugger that I am getting a JSONArray which has String array inside that is formatted as the JSONArray too but I am not able to cast it to JSONArray. The exception thrown saying it is a String type and the format is "[{"key":"Value"}]. I can certainly parse it as string but looking for more efficient way to do that.
Thanks a lot,