I'm pretty sure I've seen this discussed here before but I can't for the life of me find it through any searching method. Here's my example code before I specify the problem:
When the first item checkbox in RadComboBox1 is clicked, then the loading panel over RadListBox1 is raised just fine, but when any other item (whether the 2nd or the 52nd) is clicked, then the loading panel does not get raised. RadListBox1 does get updated in accordance with the RadAjaxManger but there is no visual indication that it is happening. Does anyone have a workaround for this?
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableOutsideScripts="true" |
EnableAJAX="true"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="RadComboxBox1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="RadComboxBox1" /> |
<telerik:AjaxUpdatedControl ControlID="RadListBox1" LoadingPanelID="RadAjaxLoadingPanel1" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="CheckBox1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="CheckBox1" /> |
<telerik:AjaxUpdatedControl ControlID="RadListBox1" LoadingPanelID="RadAjaxLoadingPanel1" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
<telerik:RadComboBox ID="RadComboBox1" runat="server" DataSourceID="datasource1" AllowCustomText="true" DataTextField="Text" DataValueField="Value" Width="250px" AppendDataBoundItems="true" EmptyMessage="All Items" ZIndex="10000000" HighlightTemplatedItems="true" TabIndex="1" Skin="Outlook"> |
<ItemTemplate> |
<div onclick="stopPropagation(event);"> |
<asp:CheckBox runat="server" ID="CheckBox1" OnCheckedChanged="CheckBox1_OnCheckedChanged" AutoPostBack="true" Text='<%# DataBinder.Eval(Container, "Text") %>' /> |
</div> |
</ItemTemplate> |
</telerik:RadComboBox> |
When the first item checkbox in RadComboBox1 is clicked, then the loading panel over RadListBox1 is raised just fine, but when any other item (whether the 2nd or the 52nd) is clicked, then the loading panel does not get raised. RadListBox1 does get updated in accordance with the RadAjaxManger but there is no visual indication that it is happening. Does anyone have a workaround for this?