Unplanned
Last Updated: 03 Jan 2017 20:34 by ADMIN
The problem is that when you have SearchMode=Contains , and have item that contains the entered text and one that starts with this text, the ComboBox selects the one which contains the text(as it is with smaller index) but scrolls to the one that starts with it.
Won't Fix
Last Updated: 09 Dec 2016 09:51 by ADMIN
Create a RadComboBox, bound to a collection of objects, implementing INotifyPropertyChanged. Use DisplayMemberPath. Select an item, then change the display member property of the selected item - the selection box is not updated.
As workaround you can use DataTemplate:
<telerikInput:RadComboBox HorizontalAlignment="Left" Margin="122,52,0,0" VerticalAlignment="Top" MinWidth="150" x:Name="radComboBox" telerik:TextSearch.TextPath="Name">
    <telerikInput:RadComboBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding Name}" />
        </DataTemplate>
    </telerikInput:RadComboBox.ItemTemplate>
</telerikInput:RadComboBox>
Declined
Last Updated: 01 Jun 2016 08:40 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 21:07 by ADMIN
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;
    }
Completed
Last Updated: 27 Feb 2017 08:27 by ADMIN
Available in the R1 2017 SP1 Release.
Unplanned
Last Updated: 19 Jan 2018 13:53 by ADMIN
Completed
Last Updated: 26 Oct 2018 12:28 by ADMIN
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.

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;
}

 

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: 31 May 2021 08:03 by ADMIN
Release LIB 2020.1.127 (01/27/2020)
Typing characters with Korean IME does not highlight the matching items.
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. 
Completed
Last Updated: 05 Nov 2021 09:04 by ADMIN
Release R3 2021 SP
While editing the XAML document, I'm experiencing weird behavior in VS2019. 

All examples apply when the Design editor is active together with XAML editor.

Example 1:

Selecting XAML with mouse stops when I start selecting the telerik:RadComboBox.

Example 2:

Copy Pasting bugs out, either the selection is empty or incorrect.

Example 3:

'Forcus' in Visual Studio is sometimes overtaken by the RadComboBox. 
Completed
Last Updated: 13 Aug 2021 12:44 by ADMIN
Release LIB 2021.2.816 (16 Aug 2021)

NullReferenceException appears when the multiple selection is enabled, items are selected and the Text property of the RadComboBox control becomes null.

To resolve this, you can override the OnTextChanged method of RadComboBox and replace the null value with an empty string.

public class CustomRadComboBox : RadComboBox
{
	protected override void OnTextChanged(string oldValue, string newValue)
	{
		if (string.IsNullOrEmpty(newValue))
		{
			newValue = string.Empty;
			Dispatcher.BeginInvoke(new Action(() =>
			{
					SelectedItems.Clear();
			}));
		}
		base.OnTextChanged(oldValue, newValue);
	}
}

Completed
Last Updated: 22 May 2023 08:27 by ADMIN
Release LIB 2023.1.522 (22 May 2023)

The items of the RadComboBox control flicker when scrolling and the Windows 11 theme is applied.

To work this around, a new Style with TargetType="RadComboBoxItem" could be created for the ItemContainerStyle property of RadComboBox. Then, set the BorderBrush and ThemeHelper.MouseOverBrush properties to "#F9F9F9".

xmlns:helpers="clr-namespace:Telerik.Windows.Controls.Theming.Helpers;assembly=Telerik.Windows.Controls"

<telerik:RadComboBox.ItemContainerStyle>
    <Style TargetType="telerik:RadComboBoxItem">
        <Setter Property="helpers:ThemeHelper.MouseOverBrush" Value="#F9F9F9" />
        <Setter Property="BorderBrush" Value="#F9F9F9"/>
    </Style>
</telerik:RadComboBox.ItemContainerStyle>

Unplanned
Last Updated: 19 Sep 2023 15:20 by Martin Ivanov

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. 

Unplanned
Last Updated: 03 Jan 2017 20:38 by ADMIN
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.
Completed
Last Updated: 21 Jul 2014 05:45 by ADMIN
ADMIN
Created by: Kalin
Comments: 0
Category: ComboBox
Type: Bug Report
0