I am using a RadGrid to display information and allowing export to CSV option. I would like to be able to add some additional 'static' information in the first row of the exported CSV file..
i.e.
(ROW 1) - STATIC TITLE
(ROW 2) - Column Header 1, Column Header 2, Column Header 3..etc
(ROW 3 -X) Column Data 1, Column Data 2, Column Data 3..etc
I have research multi-header/grouping solution, onrgidExporting solution, insertRow - but I am not able to achieve what I am attempting.
Sample of my grid
<telerik:RadGrid ID="rgTAS" Width="100%"
AllowSorting="false"
AllowPaging="false"
AllowFilteringByColumn="false"
ViewStateMode="Enabled"
OnItemDataBound="rgTAS_ItemDataBound"
AllowMultiRowSelection="false" runat="server"
OnGridExporting="rgTAS_onExporting"
GridLines="None">
<MasterTableView Width="100%" AutoGenerateColumns="false" CommandItemDisplay="None"
ShowFooter="false" ShowHeader="true"
>
<Columns>
<telerik:GridBoundColumn DataField="cc" HeaderText="CC"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="country_na" HeaderText="COUNTRY" ></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="track" HeaderText="TRACK"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ia" HeaderText="IA" ></telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Please assist...