I have placed a Grid inside WARP (WebAsyncRefreshPanel1), the following export to excel code is not working Protected Sub lnkExport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lnkExport.Click LoadData() 'UltraWebGridExcelExporter1.DownloadName = "test.xls" UltraWebGridExcelExporter1.Export(ultrawebgrid1) End Sub If I dont use WARP the functionality of export to excel is working fine. Can anybody help on this?
I believe there are issues when trying to do file transfers to or from the server when using AJAX. You will want to place the button that starts the export/download of the excel file outside of the WARP or if you need to have the button inside of the WARP, add the button's client id to the TriggerPostBackIDs property.
https://ko.infragistics.com/help/aspnet/webexcelexporter-using-webexcelexporter
(Using v8.2)
So, at this moment is impossible to make an Excel export of a webgrid which is inside a WARP?
Thanks a lot.