Hi,
I am using version 2015.1.401.40 of the ASP.NET controls for AJAX.
I would think my question would be very common and easy to do.
I have a RadGrid with a MasterTableView and 1 DetailTable (GridTableView). I am using NeedDataSource for binding and it is all working fine.
Not all records in the master, have child records. For the rows that do not, I have hidden the expand/collapse button in the DetailTableDataBind event.
When I export to Excel, I want to expand all rows that contain a child record, so that those rows get exported. I was doing that in DetailTableDataBind by setting every GridDataItem .Expanded = True.
ISSUE:
The problem with this is that it expands and exports the child rows that say "No Child Records".
Question: How can I NOT have it export the gridtableview, if there are no child records?
In the DetailTableDataBind, if there are no child records I set the DetailTableView.Visible = False, but my export still contains a blank row (which is better than the "No Child Records", but not perfect).
Thanks,
Brent