Hi telerik,
I use two Related ComboBoxes ,but when I set the combobox can input for search,the combobox will just load one item,and when I click anywhere then click combobox, it will load all items...
I use your livedemo "ComboBox / Related ComboBoxes " , I change the RadComboBox2 can input and search is also have this bug.
Your code:
<
telerik:RadComboBox
ID
=
"RadComboBox2"
runat
=
"server"
EnableViewState
=
"false"
Width
=
"186px"
CssClass
=
"ComboBox_Countries"
OnClientSelectedIndexChanging
=
"LoadCities"
OnClientItemsRequested
=
"ItemsLoaded"
OnItemsRequested
=
"RadComboBox2_ItemsRequested"
/>
I changed to ( I add
EmptyMessage EmptyMessage
):<
telerik:RadComboBox
ID
=
"RadComboBox2"
runat
=
"server"
EnableViewState
=
"false"
Width
=
"186px"
CssClass
=
"ComboBox_Countries"
OnClientSelectedIndexChanging
=
"LoadCities"
OnClientItemsRequested
=
"ItemsLoaded"
EmptyMessage
=
"Search for address..."
EmptyMessage
=
"Contains"
OnItemsRequested
=
"RadComboBox2_ItemsRequested"
/>
Please help.