Currently filtering with virtualized RadComboBox is not supported as the filtering feature works with the containers (changes their Visibility).
Currently the control scrolls by group.
This would provide the option to stop the auto scrolling when the last item is hovered.
The issue can be reproduced also with the standard ComboBox: https://connect.microsoft.com/VisualStudio/feedback/details/663870/wpf-4-0-combobox-itemtemplate-and-selectionboxitemtemplate-when-itemtemplate-is-bound#details
RadComboBox and RadRibbonComboBox in their NonEditable mode do not reflect background set inline. A style for the ToggleButton contained in the NonEditable templates prevents the TemplateBinding from working properly as it uses a hard-coded background. For RadRibbonComboBox it is a Metro theme-only issue.
Enable the ComboBox to open its DropDown in up as well as down direction
When using similar code as below, RadComboBox does not select the specified item. If the DomainDataSource data was already loaded, the selection is successful. <telerikInput:RadComboBox ItemsSource="{Binding ElementName=MineTypeDomainDataSource, Path=Data}" SelectedItem="{Binding Path=MineType, Mode=TwoWay, NotifyOnValidationError=true, ValidatesOnExceptions=true}"> <telerikInput:RadComboBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding MineTypeName}" HorizontalAlignment="Left" /> </DataTemplate> </telerikInput:RadComboBox.ItemTemplate> </telerikInput:RadComboBox> <riaControls:DomainDataSource AutoLoad="True" x:Name="MineTypeDomainDataSource" QueryName="GetMineTypesQuery" LoadedData="MineTypeDomainDataSource_LoadedData" DomainContext="{StaticResource CitationDBSvc}" />
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.
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.
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.
Properties like AutomationProperties.Name are not read if the RadComboBox is editable.
Currently, the drop down of RadComboBox contains only the RadComboBoxItems and the Clear Selection button. Add new content presenter that allows you to include extra visuals, like buttons or text.
The feature is similar to the AdditionalContent of RadTabControl.