Hello Telerik Team,
I have developed a Hierarchial RadGrid using the approach given here:
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/detailtabledatabind/defaultcs.aspx
Then added 'Export to Excel' functionality to the grid.
The code for the same is given here.
There are 2 issues with 'Export to Excel' functionality
1. 'Export to Excel' button when clicked first time works fine. But when I click it again, it does not work.
2. Data is exported only for the first level, not for the hierarchy tables.
Please provide solution asap
I have developed a Hierarchial RadGrid using the approach given here:
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/detailtabledatabind/defaultcs.aspx
Then added 'Export to Excel' functionality to the grid.
The code for the same is given here.
There are 2 issues with 'Export to Excel' functionality
1. 'Export to Excel' button when clicked first time works fine. But when I click it again, it does not work.
2. Data is exported only for the first level, not for the hierarchy tables.
<
asp:Button
runat
=
"server"
ID
=
"Button1"
OnClick
=
"Button1_Click"
Text
=
"Export to Excel"
/>
protected
void
Button1_Click(
object
sender, EventArgs e)
{
ConfigureExport();
RadGrid1.MasterTableView.ExportToExcel();
}
public
void
ConfigureExport()
{
RadGrid1.ExportSettings.ExportOnlyData =
true
;
}