Specifically this bug was found in WPF, I'm not sure of its state in Silverlight. The FontWeight is permanently some shade of Bold when using Metro. This is demonstrated in the Telerik WPF demos in the ComboBox/Theming demo.
Combobox with 2 items -- "Item1" and "it": typing "it" selects the 1st item which is "Item1" and it should select the second one which is "it"
It might also be nice to take it one step further and give the option to choose the key that fires an update off
After RadComboBoxs DropDown (PopUp) is open moving the focus with Shift+Tab skips the Combo, Tab does not skip it Available in R2 2015 Release (v.2015.2.623.40)
Available in the R1 2017 SP1 Release.
Place a RadComboBox in the GridViewColumn header and set SelectedIndex in the xaml. The SelectionChanged event is fired, but the command is not executed. As a workaround you can set the SelectedIndex in xaml instead of on the Loaded event,
The OnLostFocus is triggered when the control gets the focus and is not triggered after the focus is lost. The current call stack is as follows: - The control gets the focus - OnGotFocus is hit - OnLostFocus is hit incorrectly - The focus is removed from the control - The OnLostFocus is not hit and it should be As a workaround you can hook to these events in the constructor of the custom ComboBox: public MyRadComboBox() { this.GotFocus += MyRadComboBox_GotFocus; this.LostFocus += MyRadComboBox_LostFocus; }
Currently the control scrolls by group.
See the supported thread.
This would provide the option to stop the auto scrolling when the last item is hovered.
Enable the ComboBox to open its DropDown in up as well as down direction
When "TextSearchMode" is set to "Contains", IsEditable="True" and IsReadOnly="True": it should be possible to select all or some of the text and by pressing delete or backspace the selected text should be removed.