Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I am loading 100000 records in the Radgrid, if i am doing anything (select 50th page in RadGrid Pager Control or Filter something in the RadGrid) in the radgrid it's taking too much of time to load, sometimes i got the error like "Not enough storage is available to complete this operation.",

This is the code:

<telerik:RadGrid ID="RadGridRollup" Skin="Vista" runat="server" AutoGenerateColumns="true"

ShowHeader="true" AllowFilteringByColumn="true" AllowSorting="true" ShowFooter="false"

PageSize="50" OnNeedDataSource="RadGridRollup_NeedDataSource" AllowPaging="true"

EnableLinqExpressions="false" PagerStyle-AlwaysVisible="true" PagerStyle-Position="Bottom"

GridLines="None" Height="300px" Width="1000px" >

<ClientSettings AllowKeyboardNavigation="true" EnableRowHoverStyle="true">

<Scrolling AllowScroll="True" EnableVirtualScrollPaging="True" UseStaticHeaders="True"

SaveScrollPosition="True" />

</ClientSettings>

<GroupingSettings CaseSensitive="false" />

<MasterTableView PagerStyle-AlwaysVisible="true" PagerStyle-Position="Bottom" PagerStyle-Mode="NextPrevAndNumeric">

<ItemStyle Wrap="true" />

<Columns>

</Columns>

</MasterTableView>

</telerik:RadGrid>

After that i include the properties (ViewStateMode="Disabled" EnableViewState="false" for RadGrid) at that time also i am having same error

can anyone suggest what i need to do further to improve the performance?

share|improve this question
Is this topic for SharePoint??? – Paddy Sep 30 '11 at 9:59
Sorry, per the FAQ we do not accept questions about commercial third-party products. Instead, I recommend asking for support using the vendor's support site. – Kit Menke Sep 30 '11 at 13:35

closed as off topic by Kit Menke Sep 30 '11 at 13:33

Questions on SharePoint Stack Exchange are expected to relate to SharePoint within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.