Hi all,
First off my disclaimer: I think you guys have an awesome product and we are thinking of buying the suite, but for now we just need the grid feature.
My question/problem has to do with JSON’ified data. I have a grid component and it’s working OK with XML and JSON but I notice on my server running Django/Python when I send to the client JSON data ‘total_count’ and ‘pos’ variables do not appear to do anything. I have a table with about 500 rows and want to display about 25 at a time. Of course I can work around this using XML. Using JSON works but I need to send everything otherwise the grid component won’t allow scrolling (using xml it works fine)
Example of the JSON’ified data:
{total_count:500,
pos:0,
rows:[
{ id: 1
data:[
“1000”,
“Blood and Smoke”,
{“value”:“Stephen King”,“type”:“ed”},//change cell type
]
}
]}
etc…
Thanks for any help,
Kurt