json format
json format
can i use different json format?
my json format show like this
{
"aaData": [
["<\/i><\/a> \r\n <\/i><\/a>", ["00404", "smith", "20000000.00", "75000.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "3500.00"]]
]
}
can any body give me a hand. thanks.
This discussion has been closed.
Replies
Yes that looks okay. Use
1.0to access the first index in the second array element for the row (00404in that above), and1.1to access the second (Smithin the above), etc.This should be set using
columns.dataas if an object were being used.Allan