Hi,
I have a program to export content of radgrid to excel file as follows:
It worked fine before. But recently it is very slow to open file dialogbox. Once clicking on open or save, it displays a box shown in image and seems downloading the current webpage containing the radgrid. I have to click on cancel and then it will popup excel windows. I want to know what causes this problem. Is there a upgrade of telerik for that?
Thanks.
I have a program to export content of radgrid to excel file as follows:
RadGrid1.ExportSettings.IgnorePaging = true; (or false)
RadGrid1.ExportSettings.OpenInNewWindow = false;
RadGrid1.ExportSettings.ExportOnlyData = true;
RadGrid1.MasterTableView.ShowFooter = false;
RadGrid1.MasterTableView.AllowFilteringByColumn = true;
RadGrid1.ExportSettings.FileName = "FPG_Orders_All_Pages";
RadGrid1.MasterTableView.ExportToExcel();
Thanks.