This is a migrated thread and some comments may be shown as answers.

[Solved] Equivalent for "OnResolveUpdatedControls" properties in RAD Ajax Manager Q2 2009 release

1 Answer 124 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Meenakshi Nagalingam
Top achievements
Rank 1
Meenakshi Nagalingam asked on 10 Aug 2009, 12:51 PM
Hi,

I'm upgrading my controls from Q3 2007 to Q2 2009 telerik conrols. I didn't find any equivalent properties for "OnResolveUpdatedControls" in the new version.

Here is my previuos code:

aspx:
    <radA:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableOutsideScripts="true" 
        OnResolveUpdatedControls="RadAjaxManager1_ResolveUpdatedControls"
        <AjaxSettings> 
            <radA:AjaxSetting AjaxControlID="btnSearch"
                  ... some code ... 
            </radA:AjaxSetting> 
        </AjaxSettings> 
    </radA:RadAjaxManager> 
 

c# code behind:
        protected void RadAjaxManager1_ResolveUpdatedControls(object sender, UpdatedControlsEventArgs e) 
        { 
            e.UpdatedControls.Add(new AjaxUpdatedControl( 
                this.divgridheader.ClientID, string.Empty)); 
        } 
 

Let me know.

Thanks

1 Answer, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 10 Aug 2009, 01:16 PM
Hello Meenakshi,

Please review the following forum thread, which discuss a similar problem and see if it helps in your case:
http://www.telerik.com/community/forums/aspnet-ajax/ajax/updating-different-control-with-ajax.aspx

Kind regards,
Pavlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Ajax
Asked by
Meenakshi Nagalingam
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Share this question
or