SEC7113: CSS was ignored due to mime type mismatch
Telerik.Web.UI.WebResource.axd?compress=1&_TSM_CombinedScripts_=%3b%3bMySkin%3aen-US%3a759be785-708d-4ffb-9221-0edb1548ff41%3a7d6cac8e%3bTelerik.Web.UI%2c+Version%3d2012.1.215.40%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3ab29b07e8-2c1e-44e5-9e1b-59bb6459fb01%3afe53831e<telerik:RadGrid ID="RadGrid1" runat="server" AllowCustomPaging="True"
AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True"
GridLines="None" Skin="WebBlue">
Dim filename As String = "whatever.xls"
RadGrid1.ExportSettings.OpenInNewWindow = True
RadGrid1.ExportSettings.FileName = filename
RadGrid1.ExportSettings.ExportOnlyData = True
RadGrid1.ExportSettings.IgnorePaging = True
RadGrid1.ExportSettings.OpenInNewWindow = True
No matter what, the resulting excel only contains the first 25 rows. I have also tried forcing the above code by adding the following
RadGrid1.MasterTableView.AllowPaging = false
RadGrid1.Rebind()
'... the above code here and then..
RadGrid1.MasterTableView.AllowPaging = true
RadGrid1.Rebind()
No approach seems to work. There is no AjaxManager involved, and the grid itself is not ajaxified. Anyone out there have any ideas? The only complication in all of this is that the grid resides in a multipage / tabbed interface, but the export to Excel button resides outside of the multipiage. Also, I am using MasterPages - pretty simple there - no AjaxManager there either. Any thoughts appreciated.
Can we accomplish it with RadGrid.

<telerik:RadGrid ID="RapportGrid" runat="server" CellSpacing="0" GridLines="Horizontal" AllowPaging="True" Height="447px" Culture="nl-NL"> <ClientSettings> <Scrolling AllowScroll="True" UseStaticHeaders="True" /> </ClientSettings> <PagerStyle Mode="NextPrevAndNumeric"></PagerStyle> </telerik:RadGrid>
<telerik:RadGrid ID="Grid" runat="server" Width="100%" AutoGenerateColumns="false"> <HeaderStyle Font-Bold="False" Font-Size="Small" /> <ClientSettings EnableAlternatingItems="false"> <Resizing AllowColumnResize="true" ClipCellContentOnResize="true" ResizeGridOnColumnResize="false" ShowRowIndicatorColumn="false" EnableRealTimeResize="false" AllowResizeToFit="true" /> <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="false" /> </ClientSettings> <ItemStyle Wrap="false"/> <AlternatingItemStyle Wrap="false" /> <HeaderStyle Wrap="false" /> <MasterTableView TableLayout="Fixed" Width="100%"> </MasterTableView></telerik:RadGrid>