or

I've got a customer who is reporting that occasionally when exporting from the grid (and then opening the file directly rather than saving it), they receive an error message box from Excel, "Unable to read file."
I have been unable to reproduce the issue, and it doesn't happen every time for them either. Any thoughts on what could be causing this?

<ClientSettings AllowKeyboardNavigation="true"> <Selecting AllowRowSelect="true"></Selecting> <KeyboardNavigationSettings EnableKeyboardShortcuts="true" AllowSubmitOnEnter="true" AllowActiveRowCycle="true"></KeyboardNavigationSettings></ClientSettings>
Hello Team,
I am using a Rad Grid. that seems working perfect in my desktop, whereas it is not showing refresh button in mobile view.
Code:
<CommandItemStyle HorizontalAlign="Right" /><CommandItemSettings RefreshImageUrl="../Images/Refresh_Icon.png" RefreshText="" ShowRefreshButton="true" />Please find attachment to see the results.
In desktop view it is creating anchor tag for refresh button. But the same button is missing in mobile view.
Kindly advice to get refresh button in devices of all resolutions.
Thanks and Regards,
Ruchi Patel
It generates incorrect render with this configuration, but works if I rearrange the AjaxSetting.
<div> <table style="width:100%" border="1"> <tr> <td> <asp:Button ID="btnIgnore" runat="server" Text="Test" /> </td> </tr> <tbody id="tblNeededYes" runat="server"> <tr> <td> <asp:Button ID="btnAdd" runat="server" Text="Add" /> </td> </tr> <tr> <td> <telerik:RadGrid id="RadGridGifts" runat="server"> <MasterTableView CommandItemDisplay="None" AutoGenerateColumns="false"> <Columns> <telerik:GridBoundColumn HeaderText="Item Description" UniqueName="ItemDescription" DataField="ItemDescription"></telerik:GridBoundColumn> </Columns> </MasterTableView> </telerik:RadGrid> </td> </tr> </tbody> </table> </div> <!-- This only works if we put btnIgnore AjaxSetting below the btnAdd --> <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnIgnore"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="tblNeededYes" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="btnAdd"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGridGifts" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>