I have a hierarchical telerik gridview
in my winform
app.
In this gridview
master template I have rows that each one has child rows and are null in some columns for all child rows of that parent row.
I wrote a code that only let one parent row to be expanded and when expanding that parent row show only the columns that has value at least in one child row and hide columns that its child rows are all null for that parent row with radGridView1_ChildViewExpanded
event handler.
My problem is when i want to export this hierarchical telerik gridview
to excel file. what should i do in exporting to achieve to what i described, means exports only the columns that have at least one value in its child rows and not export others for each parent row.