Completed
Last Updated: 30 Nov 2020 05:58 by ADMIN
Release LIB 2020.3.1130 (11/30/2020)

The "{" character cannot be entered in the RadComboBox when the keyboard is German (Swiss).

As a wokaround, you can inherit the RadComboBox and override the HandleKeyDown method:

public class CustomRadComboBox : RadComboBox
    {
        protected override bool HandleKeyDown(Key systemKey, int platformKeyCode)
        {
            if(systemKey == Key.Oem5)
            {
                return false;
            }
            return base.HandleKeyDown(systemKey, platformKeyCode);
        }
    }

Completed
Last Updated: 30 Sep 2020 05:17 by ADMIN
Release LIB 2020.3.1005 (10/05/2020)

When the theme variation is changed in the VisualStudio2013 theme, the mouse over color is not updated. 

As a workaround, we can reset the Template of the RadComboBox. 

var template = this.comboBox.Template;
this.comboBox.Template = null;
this.comboBox.Template = template;

 

Completed
Last Updated: 24 Jan 2020 15:33 by ADMIN
Release LIB 2020.1.127
Currently setting the Margin through the TextBoxStyle is not respected, since the TextBox control has its Margin set locally. 
Unplanned
Last Updated: 27 Dec 2019 12:36 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ComboBox
Type: Feature Request
1
Currently, the EmptyText is shown in a TextBlock which cannot be customized. Add a EmptyTextContent or EmptyTextVisualStyle properties to allow customizing the UI of the empty text. 
Completed
Last Updated: 10 Oct 2019 05:31 by ADMIN
Release LIB 2019.3.1007

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.

Completed
Last Updated: 24 Sep 2019 06:56 by ADMIN
Release LIB 2019.3.923
When using the Telerik RadComboBox, a NVDA is not able to read the data items inside the combo box when the control is collapsed.
Completed
Last Updated: 22 Jul 2019 11:18 by ADMIN
Release Lib 2019.2.722 (07/22/2019)
Created by: Martin Ivanov
Comments: 0
Category: ComboBox
Type: Bug Report
1

If the height of RadComboBox is set to a value smaller than 26px (in Office2013) then the content of the RadToggleButton presenting the selected content is clipped.

This was reproduced with the Office2013 theme.

To work this around set the MinHeight of the child RadToggleButton to the same MinHeight as RadComboBox.

private void RadComboBox_Loaded(object sender, RoutedEventArgs e)
{
    var comboBox = (RadComboBox)sender;
    var toggle = comboBox.FindChildByType<RadToggleButton>();
    toggle.MinHeight = comboBox.MinHeight;
}

 

Completed
Last Updated: 22 Jul 2019 07:00 by ADMIN
Release LIB 2019.2.722 (7/22/2019)
When typing in RadComboBox, the first character will stay English letter, then Chinese symbols will be shown.
Completed
Last Updated: 12 Jun 2019 16:00 by ADMIN
Release R2 2019 SP1
When the TextSearchMode is set to Contains, setting the Text property of the RadComboBox, the first partially match element will be returned. The expected result is the full match (if exist) element to be set first.
Declined
Last Updated: 15 May 2019 14:28 by ADMIN
Created by: Philipp
Comments: 1
Category: ComboBox
Type: Bug Report
0

The following xaml code

            <telerik:RadComboBox Margin="5"
                                 ItemsSource="{Binding Path=AvailableServices}"
                                 IsEditable="True" 
                                 Text="{Binding Path=Service, Mode=TwoWay}"/>

            <ComboBox Margin="5"
                                 ItemsSource="{Binding Path=AvailableServices}"
                                 IsEditable="True" 
                                 Text="{Binding Path=Service, Mode=TwoWay}"/>

with this view model

public class ViewModel

{ public ObservableCollection<string> AvailableServices { get; set; } = new ObservableCollection<string> { "UPS Standard", "UPS Express Saver", "UPS Express 12:00", "UPS Express" }; public string Service { get; set; } = "UPS Express"; }

produces the attached output. 

 

The standard WPF ComboBox is set to "UPS Express" as expected while the RadComboBox shows "UPS Express Saver" which probably was incorrectly autocompleted. 


Declined
Last Updated: 22 Mar 2019 13:24 by ADMIN
Created by: Tristan
Comments: 1
Category: ComboBox
Type: Bug Report
1

It looks like the `Fluent` themes may not properly theme the Non-Editable RadComboBox control.

 

Within the default style for RadComboBox within Telerik.Windows.Controls.Input.xaml, there exists a RadToggleButton with the name "PART_DropDownButton" which is part of the main control template. This toggle button uses the style "NonEditableComboToggleButtonStyle", which then sets the toggle button template to the "NonEditableComboToggleButtonControlTemplate" control template.

 

This control template has a Border named "ToggleButtonBackground" where to background is set to a template binding. However, the NonEditableComboToggleButtonStyle does not set background, and it therefore leads to a control that looks like the attached image.

 

This can be fixed by overriding the RadComboBox style, but it isn't simple to set the background on the ToggleButton, so you need to create custom templates and style to do it.

Unplanned
Last Updated: 18 Feb 2019 15:43 by ADMIN
Created by: iSlide
Comments: 1
Category: ComboBox
Type: Feature Request
2

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.

Completed
Last Updated: 26 Oct 2018 12:28 by ADMIN
Declined
Last Updated: 12 Oct 2018 08:20 by ADMIN
If you set IsEnabled = false, in the RadComboBox then (in the Office 2016 theme) the entire box is faded, including the text. A suggestion in the forum was to set IsHitTestVisible to false, as well as IsTabStop. This works, but it means that the dropdown button still looks enabled. It would be nice if IsReadOnly did what I wanted, but it doesn't. 
Therefore, either a way to set the Visibility/Opacity of the dropdown button. Or alternatively, modify the theme(s) to make the text more visible when the box is IsEnabled is set to false, in the same way as the standard ComboBox. 
I'm aware that I can modify the template myself, but it'd be nicer if it was built in. 
Unplanned
Last Updated: 09 May 2018 10:59 by ADMIN
Unplanned
Last Updated: 19 Jan 2018 13:53 by ADMIN
Declined
Last Updated: 06 Dec 2017 07:39 by ADMIN
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.