I permit to contact you because I’ve a problem with a
telerik:RadGrid component and the Export Fonction
In fact, we have the PageSize of 20 but we want to export all data without filter.
I developed the code like this:
<telerik:RadGrid ID="xxxxxxx" runat="server" DataSourceID="xxxxx" OnItemCommand="ApplicationDependency_ItemCommand" OnItemDataBound="ApplicationDependency_ItemDataBound" OnItemCreated="ApplicationDependency_ItemCreated" AutoGenerateColumns="False" AllowPaging="True" AllowFilteringByColumn="True" PageSize="20" AllowCustomPaging="True" AllowAutomaticDeletes="True" AllowAutomaticInserts="True" AllowAutomaticUpdates="True" ClientSettings-AllowColumnsReorder="false" AllowSorting="True" CellSpacing="0" GridLines="None" Height="800px" ShowGroupPanel="True">
<ExportSettings
FileName="ApplicationDependency"
ExportOnlyData="true"
IgnorePaging="true"
UseItemStyles="true"
></ExportSettings>
It works fine on my local Pc and on the Acceptance Server. But in Production it doesn’t work and the export give me just the 20 firsts lines. For me, the only difference is IIS 7.5on the production and IIS 8 for Acceptence.
In fact, we have the PageSize of 20 but we want to export all data without filter.
I developed the code like this:
<telerik:RadGrid ID="xxxxxxx" runat="server" DataSourceID="xxxxx" OnItemCommand="ApplicationDependency_ItemCommand" OnItemDataBound="ApplicationDependency_ItemDataBound" OnItemCreated="ApplicationDependency_ItemCreated" AutoGenerateColumns="False" AllowPaging="True" AllowFilteringByColumn="True" PageSize="20" AllowCustomPaging="True" AllowAutomaticDeletes="True" AllowAutomaticInserts="True" AllowAutomaticUpdates="True" ClientSettings-AllowColumnsReorder="false" AllowSorting="True" CellSpacing="0" GridLines="None" Height="800px" ShowGroupPanel="True">
<ExportSettings
FileName="ApplicationDependency"
ExportOnlyData="true"
IgnorePaging="true"
UseItemStyles="true"
></ExportSettings>
It works fine on my local Pc and on the Acceptance Server. But in Production it doesn’t work and the export give me just the 20 firsts lines. For me, the only difference is IIS 7.5on the production and IIS 8 for Acceptence.