Hi,
I have a grid with many GridBoundColumns and one GridTemplateColumn. The GridTemplateColumn has a ItemTemplate which is generated dynamically from code-behind. I have a place holder in the ItemTemplate in which a table is added programmatically.
<ItemTemplate>
<asp:placeholder id="DetailPlaceHolder" runat="server"></asp:placeholder>
</ItemTemplate>
The table for each row in the Radgrid is added to the placeholder in the OnItemDataBound event. The grid displays the data in the perfect manner as desired.However, my export functions are not including the dynamically generated tables. All the export functions ExportToExcel, ExportToCSV, ExportToWord donot include the dynamically generated table in the GridTemplateColumn. I can get the excel and word to work by making the ExportOnlyData="false", but then also my ExportToCSV is not working. Can anyone please tell me how to solve this problem ??