Hi All,
I am trying to get a RadLoadingPanel to show up after the selected item is changed in a RadComboBox with a RadTreeView inside it's itemtemplate.
I created a small sample project which illustrates my problem. I added the code below.
There are 2 RadComboBoxes on the webform. The first one contains the RadTreeView as items, the second one just contains plain old items.
The RadLoadingPanel does show up for the second ComboBox but it won't appear for the first.
Could anybody tell me what I am missing ?
I am trying to get a RadLoadingPanel to show up after the selected item is changed in a RadComboBox with a RadTreeView inside it's itemtemplate.
I created a small sample project which illustrates my problem. I added the code below.
There are 2 RadComboBoxes on the webform. The first one contains the RadTreeView as items, the second one just contains plain old items.
The RadLoadingPanel does show up for the second ComboBox but it won't appear for the first.
Could anybody tell me what I am missing ?
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="RadComboBoxTreeViewTest._Default" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <telerik:RadAjaxManager runat="server" ID="radAjaxManager"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="rcbOrganisationUnits"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="lblSelection" LoadingPanelID="loadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadComboBox1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="lblSelection" LoadingPanelID="loadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel ID="loadingPanel1" runat="server" IsSticky="true" style="position:absolute; top:0px; left:0px; height:100%; width:100%;background-color:Red;"> </telerik:RadAjaxLoadingPanel> <telerik:RadComboBox ID="rcbOrganisationUnits" runat="server" AutoPostBack="false" AllowCustomText="false" EmptyMessage="< Select item >" DataTextField="Description" Height="100"> <ItemTemplate> <telerik:RadTreeView ID="rtvOrganisationUnit" runat="server" DataTextField="Description" DataValueField="Id" DataFieldID="Id" DataFieldParentID="ParentId" OnNodeClick="rtv_NodeClick"> <DataBindings> </DataBindings> </telerik:RadTreeView> </ItemTemplate> <Items> <telerik:RadComboBoxItem /> </Items></telerik:RadComboBox> <telerik:RadComboBox ID="RadComboBox1" runat="server" AllowCustomText="false" EmptyMessage="< Select item >" AutoPostBack="true" Height="100"> <Items> <telerik:RadComboBoxItem Text="One" runat="server" /> <telerik:RadComboBoxItem Text="Two" runat="server" /> <telerik:RadComboBoxItem Text="Three" runat="server" /> </Items> </telerik:RadComboBox><asp:Label ID="lblSelection" Text="nothing selected" runat="server" /> </div> </form></body></html>