I am trying to show data from a long running calculation in Grid. In order to speed the process up I have broke the data into several calls to a webservce, giving me several groups of JSON data. What is the best way to put that in a Grid? I would like to add each section to the Grid as it returns rather than waiting and having everything pop at the end.
What is the best way of doing this?
I have tried creating a kendo.data.DataSource and then adding the records. The demo shows an add method, but I am getting an error when I call it.
What is the best way of doing this?
I have tried creating a kendo.data.DataSource and then adding the records. The demo shows an add method, but I am getting an error when I call it.
Declared at top of script, the add line is in an anonymous function from a success function on a $.ajax call.
Error from FireBug Console: localDataSource.add is not a function
var localDataSource = kendo.data.DataSource;
Error from FireBug Console: localDataSource.add is not a function