Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
85
Exporting Filtered igGrid to Excel
posted

The sample given for exporting a paged igGrid to Excel in MVC is good, but how can I efficiently export a filtered/sorted/paged igGrid to Excel in MVC? So far the best I have come up with is to get the data from the grid using $("#myGrid").data("igGrid").dataSource.dataView(); and submit it back to my controller as json, and the data could be large...thus slow.