Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
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.
Unplanned
Last Updated: 03 Jan 2017 20:50 by ADMIN
This would provide the option to stop the auto scrolling when the last item is hovered.
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
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
MouseDown and MouseMove are not handled by RadComboBox dropdown when in XBAP, so if the RadComboBox is in Window, it can be resized while the dropdown is opened.
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: 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 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.
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: 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"
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}" />
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>
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.
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".
1 2 3 4 5