Hi,
I am using ultrawebgrid in my code. When I am exporting the grid data to the excel by using the Export method of the ultrawebgrid, then it is taking very long (around 60 s).
Please anyone help me out in this.
Thanks & Regards,
Arpit
Hi Arpit,
There are several ways to improve performance. The first is to disable exporting of styles - this introduces some overhead that could be significant when dealing with very big data sets. The second one is to export only visible data vs. exporting the whole data set. So let's say you can have paging enabled, but you can still export all of the contents in the data source to which the grid is bound. You can also programatically limit the number of rows exported using the RowExporting / RowExported events.
http://forums.infragistics.com/forums/t/48714.aspx
Hope this helps