Dear Telerik,
I need your suggetion in AjaxSetting for my Tabs in NestedViewGrid. I am having parent grid and it is also having child grids in 2 tabs. Based on the selection of each tab the respective child grid has to be loaded. So that i set PostBack property of Tab to true. I feel that the postback time is taking too much for tab selection to load the grid. So that i decided to put the Tab control inside the Ajaxsettings, so that we can avoid the postback by invoking thorough Ajax.
I used the below code for that; So please refer the same and correct me what mistaken i made so that I could be avoid postback time.
Regards,
Chandran
I need your suggetion in AjaxSetting for my Tabs in NestedViewGrid. I am having parent grid and it is also having child grids in 2 tabs. Based on the selection of each tab the respective child grid has to be loaded. So that i set PostBack property of Tab to true. I feel that the postback time is taking too much for tab selection to load the grid. So that i decided to put the Tab control inside the Ajaxsettings, so that we can avoid the postback by invoking thorough Ajax.
I used the below code for that; So please refer the same and correct me what mistaken i made so that I could be avoid postback time.
<telerik:RadAjaxLoadingPanel runat="server" ID="RadAjaxLoadingPanel1" Skin="Vista" /> |
<telerik:RadAjaxManager ID="radAjaxManager1" runat="server" ClientEvents-OnRequestStart="requestStart" |
OnAjaxSettingCreating="radAjaxManager_AjaxSettingCreating"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="ParentGrid"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="ParentGrid" LoadingPanelID="RadAjaxLoadingPanel1" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="TabStip1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="TabStip1" /> |
<telerik:AjaxUpdatedControl ControlID="Multipage1" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="Multipage1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="TabStip1" /> |
<telerik:AjaxUpdatedControl ControlID="Multipage1" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
Regards,
Chandran