I'm looking at your online demo for Exporting from the RadGrid.
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/exporting/defaultcs.aspx
I immediately click on the "Export to Excel" button. While reviewing the exported Excel or Word file, I notice that each textbox in the grid's footer has replicated itself 3 times for Page where I believe it should only display once. Please see attached screenshot (exportexcel.jpg).
I am experiencing something similar when exporting a RadGrid to Excel with a RadTextbox visible on a grid row. Please see screenshot of grid before exporting (exportgrid.jpg). Please see screenshot of exported data (exportedtextbox.jpg). I'm my example, the textbox & value are duplicated.
My grid column is defined like this:
The grid is NOT in edit mode and I would like to just export the data inside the textbox.
When I attempt to do the following setting:
The column with the textbox does not get any data exported at all to Excel or PDF.
If
Then I get the issue described above with the replicated data when exporting to Excel. Still no data get exported for PDF.
I believe this is either an export setting issue, a formatting issue, or a bug with the export functionality.
Please advise.
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/exporting/defaultcs.aspx
I immediately click on the "Export to Excel" button. While reviewing the exported Excel or Word file, I notice that each textbox in the grid's footer has replicated itself 3 times for Page where I believe it should only display once. Please see attached screenshot (exportexcel.jpg).
I am experiencing something similar when exporting a RadGrid to Excel with a RadTextbox visible on a grid row. Please see screenshot of grid before exporting (exportgrid.jpg). Please see screenshot of exported data (exportedtextbox.jpg). I'm my example, the textbox & value are duplicated.
My grid column is defined like this:
<telerik:GridTemplateColumn UniqueName="colUnits" HeaderText="Units"> <HeaderStyle Width="100px" HorizontalAlign="Left" /> <ItemStyle Width="100px" HorizontalAlign="Right" /> <ItemTemplate> <telerik:RadNumericTextBox ID="txtUnits" runat="server" Width="40px" AutoPostBack="false" NumberFormat-DecimalDigits="0" CausesValidation="false" MinValue="0" MaxLength="3" NumberFormat-AllowRounding="false" Style="text-align:right;"> <ClientEvents OnValueChanged="txtUnits_OnValueChanged" /> <ClientEvents OnKeyPress="KeyPress" /> </telerik:RadNumericTextBox> </ItemTemplate> </telerik:GridTemplateColumn>The grid is NOT in edit mode and I would like to just export the data inside the textbox.
When I attempt to do the following setting:
grid.ExportSettings.ExportOnlyData = TrueThe column with the textbox does not get any data exported at all to Excel or PDF.
If
grid.ExportSettings.ExportOnlyData = FalseThen I get the issue described above with the replicated data when exporting to Excel. Still no data get exported for PDF.
I believe this is either an export setting issue, a formatting issue, or a bug with the export functionality.
Please advise.