Version of RadAjaxPanel UpdatePanel.Update ()?

What can I do with RadAjaxPanel to force partial postback and update / update all controls inside it? I used to use UpdatePanel and called .Update ()

+6
telerik updatepanel radajaxmanager
source share
3 answers

To achieve the desired result, you can call the ajaxRequest () method of the ajax panel. A similar setup is shown in the following article:

http://www.telerik.com/help/aspnet-ajax/ajxinteractionbetweenpanels.html

+1
source share

I found this section in Telerik interactive docs that pretty much mimic the UpdatePanel.Update () method for MS update panels.

Dick

+4
source share

I would advise you to use RadAjaxManager .

It is much more flexible than RadAjaxPanel . The idea is that you define "trigger control" and the controls that are affected.

I'm not sure what causes your "partial postback force", but if I assume it is a button, you can script as follows:

 function FireButton(){ $find("<%=RadAjaxManager1.ClientID %>").ajaxRequest("IDofTheButton"); } 

And in the ajax manager settings, you add a button as a trigger, as well as the controls you want to update as “affected controls”.

+4
source share

All Articles