Hi,
One of my client is facing issue with RadGrid export to excel functionality. Issue is - it is not exporting all the records. Strangely it is missing some records in between. It is working fine in my environment which is Office 2010.
My client environement is -
Excel 2003 SP3
IE8
XP Professional Version 2002 SP3
Appreciate your help!
Code:
One of my client is facing issue with RadGrid export to excel functionality. Issue is - it is not exporting all the records. Strangely it is missing some records in between. It is working fine in my environment which is Office 2010.
My client environement is -
Excel 2003 SP3
IE8
XP Professional Version 2002 SP3
Appreciate your help!
Code:
radExportGrid.MasterTableView.ShowHeader = false;
radExportGrid.ExportSettings.HideStructureColumns = true;
radExportGrid.ExportSettings.IgnorePaging = true;
radExportGrid.ExportSettings.FileName = "IdeaExcelExport";
radExportGrid.ExportSettings.OpenInNewWindow = true;
radExportGrid.MasterTableView.ExportToExcel();