Hi,
I have a radgrid with the following settings
<ExportSettings IgnorePaging="true" OpenInNewWindow="true" HideStructureColumns="true">
<Excel Format="Xlsx" DefaultCellAlignment="Left" />
</ExportSettings>
<CommandItemTemplate>
<asp:Button ID="btnShowAll" runat="server" Text="Clear Filter" CssClass="fa fa-refresh"
AlternateText="Show All" ToolTip="Clear filters" CommandName="InitShowAll" />
<asp:Button ID="btnExport" runat="server" Text="Export" CssClass="fa fa-refresh"
AlternateText="Export" ToolTip="Export" CommandName="InitExport" />
</CommandItemTemplate>
The issue is, I couldn't remove the filter row from the exported xlsx file. Even with ExportOnlyData = true the filter row data is visible.
I also tried filterItem.Visible = false. Sill no luck.