Hi
I am finding that controls listed in the UpdatedControls section of an AjaxManager or AjaxMangerProxy perform partial postbacks.
Is this the expected behaviour? Is there a way to stop this?
Below are the details of my problem
As shown below an AjaxManagerProxy has been configured to update a datarepeater after a button is clicked (or postsback).
Inside the repeater i have a list of asp linkbuttons. Clicking one of the link buttons should cause changes to a radgrid. Instead the linkbutton does a partial postback (executes all the code as expected and rebinds new data to a radgrid) but does not display the changes to the radgrid.
If the repeater is removed from the updatedcontrols list then the link buttons perform a full postback as expected and refreshes the radgrid.
Once again I would like to know
1. After controls have been listed in the UpdatedControls section will they perform parital or full postbacks?
2. Has anyone got any ideas on how I can fix this.
I am finding that controls listed in the UpdatedControls section of an AjaxManager or AjaxMangerProxy perform partial postbacks.
Is this the expected behaviour? Is there a way to stop this?
Below are the details of my problem
As shown below an AjaxManagerProxy has been configured to update a datarepeater after a button is clicked (or postsback).
telerik:RadAjaxManagerProxy runat="server" ID="RadAjaxManager1"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RefreshDasboardButton"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="DashboardRepeater" LoadingPanelID="LoadingPanel1"/> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManagerProxy>Inside the repeater i have a list of asp linkbuttons. Clicking one of the link buttons should cause changes to a radgrid. Instead the linkbutton does a partial postback (executes all the code as expected and rebinds new data to a radgrid) but does not display the changes to the radgrid.
If the repeater is removed from the updatedcontrols list then the link buttons perform a full postback as expected and refreshes the radgrid.
Once again I would like to know
1. After controls have been listed in the UpdatedControls section will they perform parital or full postbacks?
2. Has anyone got any ideas on how I can fix this.