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

RadAjaxLoadingPanel is not dispaying on RadTreeview node selction.

1 Answer 36 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Sharan
Top achievements
Rank 1
Sharan asked on 29 Jan 2013, 01:25 PM
Hi Team

I have a RadTreeView and RadListBox.
Based on RadTreeview selection I need to load the RadListBox.  My problem is if I select any node from RadTreeview RadAjaxLoadingPanel is not dispaying and RadListBox is not populating with binded values.

Please help me to do this scenario. Please find the code here.

 <AjaxSettings>  
        <telerik:AjaxSetting AjaxControlID="RadAjaxManager1" >          
            <UpdatedControls>
               <telerik:AjaxUpdatedControl ControlID="RadTreeView1" LoadingPanelID="RadAjaxLoadingPanel" />
               <telerik:AjaxUpdatedControl ControlID="RadListBox_Vehicles"  LoadingPanelID="RadAjaxLoadingPanel" />
          </UpdatedControls>
        </telerik:AjaxSetting>
   </AjaxSettings>


 protected void RadTreeView1_NodeClick(object sender, RadTreeNodeEventArgs e)
    {
        String selectedNode = e.Node.Value;
        PopulateListBox(selectedNode);
  }

My requirement is I need to show the refreshed listbox value on selection of Treeview node.

Thanks in advance

Sharan

1 Answer, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 31 Jan 2013, 03:14 PM
Hi Sharan,

Please ensure that you have Skin property set ion the RadAjaxLoadingPanel declaration. Also please set UpdatePanelsHeight property of the RadAjaxManager to "100%" and verify how it goes.

Greetings,
Maria Ilieva
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
Ajax
Asked by
Sharan
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Share this question
or