Dear Telerik,
I have performance issue in my NestedGrid, loading very slowly . We followed some of the performance tips given by Telerik Forum but still the problem exists.
I am having the parent grid and it has four nested grids. Each nested grid placed in each tab section with the help of multipage.
As per the Telerik direction I used to bind each child grid through its own NeedDataSource event. So that it may not disturb with other grids event. SInce i set the AutoPostBack=true in RadTabStrip tag and RenderSelectedPageOnly="true" in RadMultiPage tag section, i am not bother bother about invoking each child grids NeedDataSource event. It will handle automatically as i expected. I followed following ASPX code to achieve this scenario:
But we are not able to improve the loading speed of grid for the operations like grid expanding,grouping,EditPop Window closing etc..
So guide us to what are the steps still we have to be taken to control the speed of application.
-Thanks
I have performance issue in my NestedGrid, loading very slowly . We followed some of the performance tips given by Telerik Forum but still the problem exists.
I am having the parent grid and it has four nested grids. Each nested grid placed in each tab section with the help of multipage.
As per the Telerik direction I used to bind each child grid through its own NeedDataSource event. So that it may not disturb with other grids event. SInce i set the AutoPostBack=true in RadTabStrip tag and RenderSelectedPageOnly="true" in RadMultiPage tag section, i am not bother bother about invoking each child grids NeedDataSource event. It will handle automatically as i expected. I followed following ASPX code to achieve this scenario:
<NestedViewTemplate> |
<asp:Panel runat="server" ID="InnerContainer" Visible="false"> |
<telerik:RadTabStrip runat="server" AutoPostBack="true" ID="TabStip1" MultiPageID="Multipage1" SelectedIndex="0"> |
<Tabs> |
<telerik:RadTab runat="server" Text="Users" PageViewID="UserPage"> |
</telerik:RadTab> |
<telerik:RadTab runat="server" Text="Prefills" PageViewID="PrefillPage"> |
</telerik:RadTab> |
</Tabs> |
</telerik:RadTabStrip> |
<telerik:RadMultiPage runat="server" ID="Multipage1" SelectedIndex="0" RenderSelectedPageOnly="true"> |
<telerik:RadPageView runat="server" ID="UserPage"> |
But we are not able to improve the loading speed of grid for the operations like grid expanding,grouping,EditPop Window closing etc..
So guide us to what are the steps still we have to be taken to control the speed of application.
-Thanks