json format
json format
smith_dave
Posts: 1Questions: 0Answers: 0
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.0
to access the first index in the second array element for the row (00404
in that above), and1.1
to access the second (Smith
in the above), etc.This should be set using
columns.data
as if an object were being used.Allan