Hi Telerik Team,
The issue is my group headers are not coming while exporting since I am writing the following code:
if (e.Item is GridGroupHeaderItem)
{
(e.Item as GridGroupHeaderItem).DataCell.Visible = false;
e.Item.PreRender += new EventHandler(Item_PreRender);
}
which is hiding the GroupHeaders DataCell since I need to customize the header as demonstrated in the following link
http://www.telerik.com/help/aspnet-ajax/aligning_items_in_groupheader2.html
Now,Please let me know with (e.Item as GridGroupHeaderItem).DataCell.Visible = false;
and creating my own Table cells for the group header how can I bring the group header while exporting to excel?
I think export to excel takes group headers from Datacell only it does not identify anything else.Since I am adding table cells manually in the header it is not getting those.Please let me know how to resolve this issue?
Regards,
Shubh
The issue is my group headers are not coming while exporting since I am writing the following code:
if (e.Item is GridGroupHeaderItem)
{
(e.Item as GridGroupHeaderItem).DataCell.Visible = false;
e.Item.PreRender += new EventHandler(Item_PreRender);
}
which is hiding the GroupHeaders DataCell since I need to customize the header as demonstrated in the following link
http://www.telerik.com/help/aspnet-ajax/aligning_items_in_groupheader2.html
Now,Please let me know with (e.Item as GridGroupHeaderItem).DataCell.Visible = false;
and creating my own Table cells for the group header how can I bring the group header while exporting to excel?
I think export to excel takes group headers from Datacell only it does not identify anything else.Since I am adding table cells manually in the header it is not getting those.Please let me know how to resolve this issue?
Regards,
Shubh