Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
Place a RadComboBox control in a RadPane. Make it floating and dock it again. When selection is changed, the SelectionChanged event is fired multiple times.
Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
Declined
Last Updated: 08 Jun 2016 08:15 by Vernon
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
When filtering is enabled, enter text that doesn't exist in the items and when the focus is removed the text entered is deleted, but it should stay.
The solution of this issue was implemented by a new feature in the control which determines if the Text of the RadComboBox should be updated on LostFocus or not.
Simply set the UpdateTextOnLostFocus dependency property of the control to "False". By default its value is True and no change in behavior should be observed.
The UpdateTextOnLostFocus dependency property is available in the 2015 Q2 SP1 release.
Completed
Last Updated: 17 Feb 2015 10:43 by ADMIN
When the ComboBox is non editable.
Declined
Last Updated: 14 May 2016 13:57 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ComboBox
Type: Bug Report
7

			
Declined
Last Updated: 05 Jan 2017 15:23 by ADMIN
Declined
Last Updated: 08 Jun 2016 08:18 by Vernon
ADMIN
Created by: Telerik Admin
Comments: 5
Category: ComboBox
Type: Bug Report
7

			
Completed
Last Updated: 15 Mar 2021 08:57 by ADMIN
Release LIB 2021.1.315 (15/03/2021)

According to the following article, when the UpdateSelectionOnLostFocus property is set to True and you enter a text that cannot update the selection, once the control loses the focus, the typed text should stay in the textbox. 
https://docs.telerik.com/devtools/wpf/controls/radcombobox/howto/perform-selection-only-lost-focus

However, this doesn't happen if an item is already selected. In this case, the searched text is cleared. If you do not have a selection, then the text stays on lost focus. 

To work this around, you can cache the value of the RadComboBox's Text property in the PreviewLostKeyboardFocus event handler and then restore it in the LostFocus event handler. 

private string textCache;
private void RadComboBox_PreviewLostKeyboardFocus(object sender, System.Windows.Input.KeyboardFocusChangedEventArgs e)
{
	this.textCache = this.comboBox.Text;
}
private void RadComboBox_LostFocus(object sender, RoutedEventArgs e)
{
	this.comboBox.Text = this.textCache;
}

Won't Fix
Last Updated: 25 Jan 2017 13:11 by ADMIN
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,
Completed
Last Updated: 07 Sep 2016 06:42 by ADMIN
When the CheckBox is focused the issue is appearing.

Available in LIB version 2016.2.905, it will be also available in the 2016 R3 Release.
Completed
Last Updated: 27 Oct 2014 13:32 by ADMIN
When IsEditable is set to true the SelectedItem is not updated if you delete the SelectedItem's text to match another existing item.
Declined
Last Updated: 30 Jun 2015 13:19 by ADMIN
When the app is in full screen OOB mode the placement of the drop down portion of the ComboBox control is incorrect.
Unplanned
Last Updated: 19 Sep 2016 13:47 by ADMIN
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
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
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.
Completed
Last Updated: 10 Feb 2015 15:20 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ComboBox
Type: Bug Report
4

			
Completed
Last Updated: 22 Jan 2016 11:22 by ADMIN
1 2 3 4