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

RadCombobox with Checkbox in template not firing loadingpanel

3 Answers 62 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Scott Barnes Jr
Top achievements
Rank 1
Scott Barnes Jr asked on 17 May 2010, 11:32 PM
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:

<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?

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 20 May 2010, 03:06 PM
Hello Scott,

Please try setting the Skin property of your RadAjaxLoadingPanel. For example:
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Skin="Web20" runat="server">
  </telerik:RadAjaxLoadingPanel>

Does this help?


Peter
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Scott Barnes Jr
Top achievements
Rank 1
answered on 20 May 2010, 07:41 PM
Hi Peter,

I did have Skin="Vista" before and switching it to "Web20" still didn't help.
0
Peter
Telerik team
answered on 26 May 2010, 09:35 AM
Hello Scott,

We cannot replicate this problem in our local tests. Please, open a support ticket and send us a simple working demo for testing.

Greetings,
Peter
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
ComboBox
Asked by
Scott Barnes Jr
Top achievements
Rank 1
Answers by
Peter
Telerik team
Scott Barnes Jr
Top achievements
Rank 1
Share this question
or