I'm fighting with jquery flexigrid - below is my format. I can get the flexigrid to load thousands of lines if I load them all into a single page, however I want to split out pages inside my json response. According to the documentation I believe my format is correct as it stands below.
[
{
"page": 1,
"total": 1,
"rows": [
{
"cell": [
"09/09/2014 5:57:30 AM",
"4003",
"",
"",
"",
"159.375",
19001.03,
"11.8",
""
]
}
]
},
{
"page": 2,
"total": 3,
"rows": [
{
"cell": [
"09/09/2014 5:57:30 AM",
"4003",
"",
"",
"",
"159.375",
19001.03,
"11.8",
""
]
},
{
"cell": [
"09/09/2014 5:57:33 AM",
"4003",
"",
"",
"",
"",
"",
"",
9398.51
]
},
{
"cell": [
"09/09/2014 5:57:36 AM",
"4003",
"1873.5",
77,
72.28,
"",
"",
"",
""
]
}
]
}
]
Am I missing something? Is there an obvious flaw in my layout above?
Thanks.