Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kendo Grid Excel Export limitation

Is there a limitation or maximum number of records that can be returned to the excel export functionality of the Kendo Grid?

Sometimes I get a Network error in the browser but investigating this leads to nothing specific about the Kendo platform.

Ive set AllPages = true and there are aboyt 30000 records to return via web odat api controllers in an asp.net web app.

Cheers Michael

like image 781
user3382474 Avatar asked Feb 01 '26 06:02

user3382474


1 Answers

There are no Kendo UI - specific limitations, but there are limitations related to data serialization and browser memory.

Setting AllPages to true will make the Kendo UI DataSource request all items in a single request. Make sure your server implementation is able to serialize them, and the web server is able to send them.

http://docs.telerik.com/kendo-ui/controls/data-management/grid/excel-export#excel-export-of-all-data

like image 134
dimodi Avatar answered Feb 03 '26 05:02

dimodi