JSON aaData at second level?
JSON aaData at second level?
Is it possible to have
[code]
{
"tableData": {
"aaData": [
["cell00", "cell01", "cell02"],
["cell10", "cell 11", "cell12"]
]
},
"other": "something"
}
[/code]
Really the point would be here that I want aaData to be at the second level within the JSON data, how would I achieve this?
[code]
{
"tableData": {
"aaData": [
["cell00", "cell01", "cell02"],
["cell10", "cell 11", "cell12"]
]
},
"other": "something"
}
[/code]
Really the point would be here that I want aaData to be at the second level within the JSON data, how would I achieve this?
This discussion has been closed.
Replies
Allan