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

Load only radtreeview from time to time

1 Answer 25 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
mauricio
Top achievements
Rank 1
mauricio asked on 06 Mar 2012, 06:58 PM
Hello

I have a radtreeview in my project and would like to know how to recharge it from time to time

can be on a timer and updatepanel?

thank you very much beforehand 

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 08 Mar 2012, 01:02 PM
Hello Mauricio,

 
You can use the asp timer as in the code bellow:

<asp:Timer runat="server" id="UpdateTimer" interval="5000" ontick="UpdateTimer_Tick" />
       <asp:UpdatePanel runat="server">
           <ContentTemplate>
     <telerik:RadTreeView ID="RadTreeView3" runat="server" MultipleSelect="true" EnableDragAndDropBetweenNodes="true" EnableDragAndDrop="True"
protected void UpdateTimer_Tick(object sender, EventArgs e)
  {
      RadTreeView3.DataBind();
  }

Hope this will help.

Regards,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
TreeView
Asked by
mauricio
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or