Hi,
I have a kendo mvc grid with page size 50 and have total records of 500. I want to iterate through all grid records and get the data view for all the 500 records in java script. I'm writing it as below in the grid export excel event and getting only the first 50 records in to the view .
var data = this.dataSource.view();
var template = kendo.template(this.columns[0].template);
for (var i = 0; i < data.length; i++) {
var cellvalue =template (data[i]);
}
How do I get all the 500 records and iterate through them to get the view?
Thanks
Vidya