Hi,
I can't seem to export the child records. I have 3 levels of hierarchical grid.
Here is the code that I'm using:
RadGrid1.ExportSettings.ExportOnlyData = True
RadGrid1.ExportSettings.IgnorePaging =
True
RadGrid1.ExportSettings.OpenInNewWindow = True
RadGrid1.ExportSettings.FileName = "Summary_" & Now.Date.ToShortDateString.Replace("/", "")
RadGrid1.MasterTableView.HierarchyDefaultExpanded =
True
RadGrid1.MasterTableView.ExportToExcel()
I've tried using Rebind() method as well but that didn't really solve my problem. I'm only seeing 2 levels only.
Please help!