See the supported thread.
The combobox lists in Windows 10 settings (see attached pictures) have an interesting behavior which could be integrated by Telerik combox controls. The behavior is as following: when the listbox is opened, it appears above the combobox control with the selected item highlighted. And the placement of the listbox can change if the first item is selected (displayed down direction) or the last item is selected (display up direction). It's difficult to explain that with simple words, so I suggest to see attached pictures to understand my request.
Steps to Create Problem using EditableTextBoxTemplate_WPF sample project provided by Telerik:(modified project is zipped and attached just in case)
- Edit Example.xaml to add "AllowMultipleSelection="True":
<telerik:RadComboBox IsEditable="True" ItemsSource="{Binding Companies}" SelectAllTextEvent="None" FontFamily="Calibri" FontSize="14"
1) Run project
2) Click drop down button to see list in the drop down
3) Type "Global" (at this point it should autocomplete "Global Corporation")
4) Without clicking on anything or Press space bar to continue typing (type space character)
5) Typed text will disappear leaving only space character behind - At this point, nothing is selected.
This does NOT happen if typed text before space does NOT match with any item from the list.
This does NOT happen if AllowMultipleSelection set to false.
This does NOT happen if dropdown is NOT open while typing.
Available in LIB Version 2016.3.1010, it will be also available in the 2016 R3 SP1.
Properties like AutomationProperties.Name are not read if the RadComboBox is editable.
The RadListBox has an attached property for mvvm binding of SelectedItems - https://docs.telerik.com/devtools/wpf/controls/radlistbox/features/selecteditemssource.
Please support SelectedItemsSource for RadComboxBox too.
When you start navigating through the ribbon via the keytips or the arrow keys, and you get to a RadRibbonComboBox, this opens its drop down which contains RadRibbonComboBoxItems.
In this case the keyboard navigation (using the arrows) of the RadRibbonComboBox doesn't work. This happens because the ribbon navigation implementation interfere with the combobox navigation.
In this case, the control is bound to a collection of strings. The collection contains equal string values. ("h1","h2","h1"). When the first item is selected and afterward we select the last one, will not trigger the SelectionChanged event. This behavior could be improved.
MouseDown and MouseMove are not handled by RadComboBox dropdown when in XBAP, so if the RadComboBox is in Window, it can be resized while the dropdown is opened.
When you click on the TextBox of an editable RadComboBox all the text should be selected, but it is not, even when SelectAllTextEvent="All" is set. The text is blinking as selected for half a second and then deselects.
If there are plenty items in RadComboBox and you double click an item to select it sometimes the wrong item is selected because of the animation.