Hi there,
I'm currently using a Radgrid with render mode auto. In Desktop browser, export button does fine. In mobile browser, if I tap filter icon, then open Filter options, but tap export not open export options . I used UI for ASP.NET AJAX Q3 2015 SP1 (version 2015.3.1111).
How can I solve this?
Kind Regards,
6 Answers, 1 is accepted
Note that when exporting to PDF you should turn off the scrolling/static headers features on export as mentioned in the help topic below:
http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/functionality/exporting/export-formats/pdf-export#pdf-export-q--a
Regards,
Maria Ilieva
Telerik
Hello Maria,
I don't use export to pdf, but only export to excel.
<telerik:RadGrid ID="RadGrid1" runat="server" Skin="Default" Width="100%" AllowFilteringByColumn="True" AllowPaging="True"
AllowSorting="True" ShowFooter="True" GroupPanelPosition="Top" RenderMode="Auto" >
<GroupingSettings CollapseAllTooltip="Collapse all groups" CaseSensitive="False" />
<ExportSettings ExportOnlyData="True" HideStructureColumns="True"
IgnorePaging="True" OpenInNewWindow="true"
SuppressColumnDataFormatStrings="True" UseItemStyles="True" FileName="Transaksi">
<Excel FileExtension="xlsx" Format="Xlsx" />
</ExportSettings>
<ClientSettings AllowKeyboardNavigation="True" EnableRowHoverStyle="True"
Resizing-AllowColumnResize="False" AllowDragToGroup="True">
<Selecting EnableDragToSelectRows="False" />
<ClientEvents />
<Scrolling AllowScroll="true" UseStaticHeaders="true" FrozenColumnsCount="5" />
<Resizing AllowColumnResize="True" AllowResizeToFit="True"></Resizing>
</ClientSettings>
<MasterTableView PageSize="20" CommandItemDisplay="Top" Width="100%" AutoGenerateColumns="False" DataKeyNames="KonosemenID" >
<CommandItemSettings ShowAddNewRecordButton="False"
ShowExportToExcelButton="True" />
Tap export icon not work in Mobile browser.
but if set
<Scrolling AllowScroll="false" UseStaticHeaders="true" FrozenColumnsCount="5" />
It works fine in mobile browser. If I tap export icon the the export option is open ( attached here)
My grid have 20 columns and too big in mobile browser.
How?
Thanks
Find attached a sample runnable application that works properly on my end. Test it on your side and see what the difference in your case is.
Regards,
Maria Ilieva
Telerik
Hi Maria,
Thank you for your reply. I say your ExportTest page, that you sent to me before.
Now for a while, I just change the CommandItemDisplay="Top" to CommandItemDisplay="TopAndBottom"or CommandItemDisplay="Bottom".
(see the link: http://www.kgponline.net/OrindoTransaksiPeriodik.aspx )
It's little bit odd, because the Top export Icon doesn't work but the Bottom Export Icon Works.
Thank you.
Regards,
Nur
I tested the provided page locally and was able to replicate the issue. Can you please share the exact modification made in the code so that we can apply them locally and further research on the problem?
Regards,
Maria Ilieva
Telerik