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: 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"
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
Declined
Last Updated: 19 Sep 2016 06:25 by ADMIN
Workaround: use OnDropDownClosed event.
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: 11 Aug 2016 14:04 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: 22 Jan 2016 11:22 by ADMIN
Completed
Last Updated: 25 Jun 2015 15:25 by ADMIN
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: 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
Won't Fix
Last Updated: 03 Jan 2017 20:51 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 3
Category: ComboBox
Type: Bug Report
3
See the supported thread.
Unplanned
Last Updated: 03 Jan 2017 20:34 by ADMIN
When using similar code as below, RadComboBox does not select the specified item. If the DomainDataSource data was already loaded, the selection is successful.
<telerikInput:RadComboBox ItemsSource="{Binding ElementName=MineTypeDomainDataSource, Path=Data}"
  SelectedItem="{Binding Path=MineType, Mode=TwoWay, NotifyOnValidationError=true, ValidatesOnExceptions=true}"> 
 <telerikInput:RadComboBox.ItemTemplate> 
  <DataTemplate> 
   <TextBlock Text="{Binding MineTypeName}" HorizontalAlignment="Left" /> 
  </DataTemplate> 
 </telerikInput:RadComboBox.ItemTemplate>  
</telerikInput:RadComboBox>  
<riaControls:DomainDataSource AutoLoad="True"
  x:Name="MineTypeDomainDataSource"
  QueryName="GetMineTypesQuery"
  LoadedData="MineTypeDomainDataSource_LoadedData"
  DomainContext="{StaticResource CitationDBSvc}" />
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.
Declined
Last Updated: 05 Nov 2014 11:57 by ADMIN
After making a selection in the control and changing the theme two times in a row an InvalidOperationException is thrown about the animation.
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.