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

Callbacks not working for SOME comboboxes after update to 2012.3.1016.40

1 Answer 35 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Fred Taylor
Top achievements
Rank 1
Fred Taylor asked on 24 Oct 2012, 01:38 PM
After update to latest control version, some of my ComboBoxes will not callback to get results for "load on demand" scenarios.  I have three load on demand combo boxes on one page.  One continues to work, two do not.  In the firefox debugger I can see the working control performing a postback when I type in the box.  The other two do nothing when type.

Works:
<telerik:RadComboBox ID="cboEvents" runat="server"
 AutoPostBack="false" DropDownWidth="675px" EmptyMessage=""
 Height="200px" HighlightTemplatedItems="true" EnableLoadOnDemand="True" AllowCustomText="True" EnableVirtualScrolling="True" ShowMoreResultsBox="True" OnItemsRequested="cboEvent_ItemsRequested"
 Skin="Windows7" Width="300px">

Doesn't work:
<telerik:RadComboBox ID="cboURL" runat="server" AllowCustomText="True"
                                AutoPostBack="false" DropDownWidth="675px" EmptyMessage=""
                                EnableLoadOnDemand="True" EnableVirtualScrolling="True" Height="200px"
                                HighlightTemplatedItems="true"
                                ShowMoreResultsBox="True" OnItemsRequested="cboURL_ItemsRequested"
                                Skin="Windows7" Width="500px"
                                EnableAutomaticLoadOnDemand="True">

1 Answer, 1 is accepted

Sort by
0
Fred Taylor
Top achievements
Rank 1
answered on 24 Oct 2012, 01:53 PM
Found the problem.  When these attributes are on the combobox:

<WebServiceSettings>
<ODataSettings InitialContainerName="">
  </ODataSettings>
 </WebServiceSettings>

The comboxbox will not callback.  The attributes were added in a previous version of the controls. 
Tags
ComboBox
Asked by
Fred Taylor
Top achievements
Rank 1
Answers by
Fred Taylor
Top achievements
Rank 1
Share this question
or