posted 15 years ago
Greg,
I am specifically looking for JSON library that can genrate JqGRID (JQuery) specific JSON format. JqGrid demands a different JSON format for which you had mentioned to use FlexJSON in your blog. But that needs JAva 5. I am using JDK1.4. Look at the JSON format below for JqGrid:
{ total: "xxx", page: "yyy", records: "zzz",
rows : [ [id:"1", cell:["cell11", "cell12", "cell13"]],
[id:"2", cell:["cell21", "cell22", "cell23"]]
] }
The format above
cell:["cell11", "cell12", "cell13"]
is different than what JSON actually generates:
"cell":[{"key1:value1", "key2:value", "key3:value3"}]
Thanks
Vicky