
13 Answers, 1 is accepted
Currently RadComboBox cannot open its dropdown automatically when the user starts typing inside. It only can open its dropdown when it gets the focus - just set OpenDropDownOnFocus = true.
Kind regards,
Valeri Hristov
the Telerik team
but i cant find OpenDropDownOnFocus = true. in properties left panel

If you want to filter the items so only the items starting with letter "C" are showed, you have to set IsFilteringEnabled= true. If nothing is set the first item starting with letter C will be selected and autocomplete in the textbox but the other entries wont be filtered. You can check this configurator here and see if that behavior will suit you
Kind regards,
Boyan
the Telerik team

You can try to set IsDropDownOpen = True in the KeyDown event of the RadComboBox. I think this will cover your scenario.
Don't hesitate to contact us if you have other questions.
Kind regards,
Boyan
the Telerik team

If i have the following list of elements:
Adam
Bev
Charles
Edmond
In my combobox, when I type B, I would like to see autocomplete kick in and display "Bev", but right now it only displays B.
IF I type B and then hit the tab - Bev does show up in the list. I would like this behaviour after just typing B without pressing tab, and of course, without leaving the field.
Please, refer to the following links:
- our online documentation - http://www.telerik.com/help/silverlight/radcombobox-features-autocomplete.html
- our online demos - http://demos.telerik.com/silverlight/#ComboBox/Configurator
I hope this helps.
Kind regards,
George
the Telerik team

I've reviewed the documentation extensively, and believe that I have an indication where things might be going wrong...
The class that I'm binding to has a surrogate key, followed by a description. ClaimTypeID, and ClaimType. I've listed them here wtih SelectedValuePath, and DisplayMemberPath. I think it is this translation that is not occuring after a keystroke that unique identifies an item in the list.
The same behaviour that I am experiencing can be found using your demo by simply setting the IsFilteringEnabled = true. ( I've set my to false, but it had no visual effect.) Set this attribute to true, clear the combobox, and type the first letter. The correct item will be selected, but the enter word of the selection will not be displayed in the combobox until the user presses Tab.
Also, I've never seen the telerik:TextSearch.TextPath - I'm going to look in the documentation for what that is for (I can guess but don't want to assume).
<telerik:RadComboBox
Grid.Column="1"
x:Name="cboClaimType"
CanAutocompleteSelectItems="True"
OpenDropDownOnFocus="False"
IsFilteringEnabled="False"
FilteringMode="StartsWith"
IsEditable="True"
IsReadOnly="True"
ItemsSource="{Binding LookUpQueryViewModel.ClaimTypes, Mode=OneWay, Source={StaticResource ViewModelLocatorDataSource}}"
DisplayMemberPath="ClaimType"
SelectedValuePath="ClaimTypeID"
HorizontalAlignment="Left"
MinWidth="150"
Margin="5"
telerik:TextSearch.TextPath="ClaimType"
/>
When the filtering is enabled, the RadComboBox doesn't autocomplete. I would suggest you to set IsFilteringEnabled property to False.
George
the Telerik team

Hi,
I am using Rad Combo Box , I want result will appear only when i write to search in combo box, But currently it open directly when i just click on rad combo box.
Please help me out.
Regards
Rohit Gupta
RadComboBox's DropDown should not open automatically when you move the focus to it unless its OpenDropDownOnFocus property is set to True - please, set it to False in order to prevent it from opening when the control gets focused. If you want to open it as soon as a text is typed inside RadComboBox's TextBox you need to handle the KeyDown event of the control and set its IsDropDownOpen property to True:
private
void
comboWindow2_KeyDown(
object
sender, KeyEventArgs e)
{
var combo = sender
as
RadComboBox;
if
(!combo.IsDropDownOpen)
{
combo.IsDropDownOpen =
true
;
}
}
Please, give a try to the proposed above approaches and let us know if they worked for you.
Hopes this helps.
Regards,
Nasko
Telerik

Hi,
I want to list all bound values in the kendo auto complete on mouse click on the control as it is listing on key enter.
Thanks.
Malik Z.
This is UI for Silverlight forum. Your question is related for Kendo UI so you can post your question in the related forum.
Regards,
Dinko
Progress Telerik