I am trying to export the data from RadGrid to excel. The grid contains link buttons. While exporting some images are also getting exported to excel.
I want only the text data.
I have set the following property before exporting
ContactListGrid.PagerStyle.Visible =
false;
ContactListGrid.ExportSettings.ExportOnlyData = false;
ContactListGrid.ExportSettings.OpenInNewWindow = true;
<telerik:RadGrid runat="server" ID="RadGrid1" DataSourceID="AccessDataSource1" GridLines="None">
<ExportSettings>
<Pdf FontType="Subset" PaperSize="Letter" />
<Excel Format="Html" />
<Csv ColumnDelimiter="Colon" RowDelimiter="NewLine" />
</ExportSettings>
In my grid the <Excel Format = "Html"> is not available. Only <csv> and <pdf> are available.
So I cannot change the formatting option.
How we can export the content without any images and in a plain text.
I am using the RadGrid of version 5.1.3.0. Please help me in this regard.
Regards,
Anil