Hi,
I have a multilevel grid and I want to export them out as Excel. I set
ExportSettings.ExportOnlyData = true;
ExportSettings.IgnorePaging = true;
ExportSettings.OpenInNewWindow = true;
It can popup downloading window and export the master grid if I haven't expanded any detail table. However, if I ever expand any detail table, the grid will just display the export table in current page. I checked my code, the OpenInNewWindow is always set to ture before it call ExportToExcel().
However, if I set HierarchyLoadMode="Client" in the MasterTableView, I won't get the above problem even if I expand any detail table.
I want to use server side hierarchy load mode and avoid the above problem. Does any body know this trick??
Thanks a lot,
Joe