Hello,
I have a web page with several individual buttons and also several RadDocks that contain their own RadGrids, all of which are in an UpdatePanel. On this page, there is quite a bit of functionality that happens on the Page Load Event.
Now for the individual buttons themselves, I want the page to Postback like normal to reload the page. However, I don't want to Postback to occur when the user is working with one of the RadGrids. Currently, when the user adds, edits or deletes a record in one of the RadGrids, this causes a Postback of the page and negatively affects the performance of the overall web page.
I am using the RadAjaxManager as well:
Is it possible to have the RadGrid not Postback so that the performance is not negatively affected? Any siggestions, tips or work-arounds would be greatly appreciated!
Jason
I have a web page with several individual buttons and also several RadDocks that contain their own RadGrids, all of which are in an UpdatePanel. On this page, there is quite a bit of functionality that happens on the Page Load Event.
Now for the individual buttons themselves, I want the page to Postback like normal to reload the page. However, I don't want to Postback to occur when the user is working with one of the RadGrids. Currently, when the user adds, edits or deletes a record in one of the RadGrids, this causes a Postback of the page and negatively affects the performance of the overall web page.
I am using the RadAjaxManager as well:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<ajaxsettings>
<telerik:AjaxSetting AjaxControlID="RadGrid1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</ajaxsettings>
</telerik:RadAjaxManager>
Is it possible to have the RadGrid not Postback so that the performance is not negatively affected? Any siggestions, tips or work-arounds would be greatly appreciated!
Jason