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

Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
Completed
Last Updated: 22 Jan 2016 11:22 by ADMIN
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: 25 Jun 2015 15:25 by ADMIN
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
RadComboBox with IsEditable = true, IsReadOnly = true and IsFilteringEnabled = true. Select an item and then in order for the filtering to work you have to delete the selected text with Backspace
Completed
Last Updated: 18 Jul 2017 14:28 by ADMIN
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)
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
The same issue can be observe when placing the control inside ToolBar.
Completed
Last Updated: 15 Sep 2021 15:20 by Arif
Release LIB 2021.2.816 (16 Aug 2021)

Steps to Create Problem using  EditableTextBoxTemplate_WPF sample project provided by Telerik:(modified project is zipped and attached just in case)

- Edit Example.xaml to add "AllowMultipleSelection="True":

            <telerik:RadComboBox  IsEditable="True" ItemsSource="{Binding Companies}" SelectAllTextEvent="None" FontFamily="Calibri" FontSize="14"
                                  DisplayMemberPath="Name" EditableTemplate="{StaticResource EditableComboBox}"
                                  Width="220" Height="50" DropDownWidth="*" x:Name="comboBox" Margin="5 10" AllowMultipleSelection="True"/>
        </StackPanel>

 

1) Run project 

2) Click drop down button to see list in the drop down

3) Type "Global" (at this point it should autocomplete "Global Corporation")

4) Without clicking on anything or Press space bar to continue typing (type space character)

5) Typed text will disappear leaving only space character behind - At this point, nothing is selected.

 

This does NOT happen if typed text before space does NOT match with any item from the list. 

This does NOT happen if AllowMultipleSelection set to false

This does NOT happen if dropdown is NOT open while typing.

 

Completed
Last Updated: 10 Oct 2016 14:21 by ADMIN
Available in LIB Version 2016.3.1010, it will be also available in the 2016 R3 SP1.
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: 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.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
When you click on the TextBox of an editable RadComboBox all the text should be selected, but it is not, even when SelectAllTextEvent="All" is set. The text is blinking as selected for half a second and then deselects.
1 2