Completed
Last Updated: 06 Mar 2015 15:18 by ADMIN
ADMIN
Created by: Valeri Hristov
Comments: 6
Category: ComboBox
Type: Feature Request
31
The control should allow customizations in its filtering functionality, for example, the developers should be able let RadComboBox match "Á" when the user types "A".
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Pana
Comments: 0
Category: ComboBox
Type: Feature Request
20
Allow the developers to style the TextBox area of a editable RadComboBox - add icons, change the string, format the text etc.
Completed
Last Updated: 08 Sep 2017 07:44 by Kevin
It might also be nice to take it one step further and give the option to choose the key that fires an update off
Completed
Last Updated: 11 Oct 2023 11:05 by ADMIN
Release R3 2023
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ComboBox
Type: Feature Request
13

			
Completed
Last Updated: 14 Sep 2016 13:16 by ADMIN
ADMIN
Created by: Kalin
Comments: 0
Category: ComboBox
Type: Feature Request
6
Available in the 2016 R3 Release.

Please check our help article for more information: 
http://docs.telerik.com/devtools/wpf/controls/radcombobox/features/multiple-selection
Completed
Last Updated: 05 Dec 2017 16:52 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ComboBox
Type: Feature Request
5
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"
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
Currently, there is an internal API that determines whether partial matches can be selected or not. Provide public options to change this behavior. By default partial matches are selected.

In the meantime, the default behavior can be changed using reflection to set the CanAutocompleteSelectPartialMatches property of RadComboBox to False.
Completed
Last Updated: 15 Oct 2021 10:47 by ADMIN
Release LIB 2021.3.1018 (18 Oct 2021)
Created by: Stenly
Comments: 0
Category: ComboBox
Type: Feature Request
2
Create a property that allows to easily change the drop-down icon of the RadComboBox control. Now, the default control template needs to be extracted and modified for the theme that is used.
Completed
Last Updated: 25 Jun 2015 15:31 by ADMIN
ADMIN
Created by: Geri
Comments: 1
Category: ComboBox
Type: Feature Request
0

			
Completed
Last Updated: 13 Dec 2021 08:00 by ADMIN
Release LIB 2021.3.1206 (6 Dec 2021)

Setting the Background property of RadComboBox no longer changes the background color of the control.

To work this around, you can add a global event handler for the Loaded event of RadComboBox and set the corresponding backgrounds in code.

static MainWindow()
{
	EventManager.RegisterClassHandler(typeof(RadComboBox), RadComboBox.LoadedEvent, new RoutedEventHandler(OnComboBoxLoaded));
}

private static void OnComboBoxLoaded(object sender, RoutedEventArgs e)
{
	var comboBox = (RadComboBox)sender;
	if (!comboBox.IsEditable)
	{
		if (comboBox.IsEnabled)
		{
			var buttonChrome = comboBox.FindChildByType<ButtonChrome>();
			buttonChrome.Background = Brushes.Purple;
		}
		else
		{
			comboBox.Background = Brushes.Purple;
		}                
	}	
}

Completed
Last Updated: 12 Jul 2023 08:52 by ADMIN
Release R2 2023 SP1
ArgumentException is thrown when mixed typed values are presented in the ItemsSource. For example, if you use an enum type and present an additional numeric value that is not presented in the corresponding enum definition.

The exception message is the following: System.ArgumentException: 'The value '102' is not a valid value for the enum 'FilterOperator'.'

To work this around, avoid using mixed typed values in the ItemsSource.