Hi,
I have a radgrid which groups data according to Name. So, John will have all his data displayed and then greg and so on. But when I use to export to excel, it always exports the last group.
Any ideas on this would be helpful.
I was also not able to find any demos for exporting grouped data.
I have used the following export settings:
string alternateText = "ExcelML";
this.radGridBusinessGoalList.ExportSettings.Excel.Format = (Telerik.Web.UI.GridExcelExportFormat)Enum.Parse(typeof(Telerik.Web.UI.GridExcelExportFormat), alternateText);
this.radGridBusinessGoalList.ExportSettings.ExportOnlyData = true;
this.radGridBusinessGoalList.ExportSettings.IgnorePaging = true;
this.radGridBusinessGoalList.ExportSettings.OpenInNewWindow = true;
Thanks,
TM