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: 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: 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: 27 Feb 2017 08:27 by ADMIN
Available in the R1 2017 SP1 Release.
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,
Declined
Last Updated: 05 Jan 2017 15:23 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 21:07 by ADMIN
The OnLostFocus is triggered when the control gets the focus and is not triggered after the focus is lost. The current call stack is as follows:
- The control gets the focus 
- OnGotFocus is hit
- OnLostFocus is hit incorrectly
- The focus is removed from the control
- The OnLostFocus is not hit and it should be

As a workaround you can hook to these events in the constructor of the custom ComboBox:

    public MyRadComboBox()
    {
        this.GotFocus += MyRadComboBox_GotFocus;
        this.LostFocus += MyRadComboBox_LostFocus;
    }
Unplanned
Last Updated: 03 Jan 2017 21:03 by ADMIN
Currently the control scrolls by group.
Unplanned
Last Updated: 03 Jan 2017 20:56 by John
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:50 by ADMIN
This would provide the option to stop the auto scrolling when the last item is hovered.
Unplanned
Last Updated: 03 Jan 2017 20:46 by ADMIN
Enable the ComboBox to open its DropDown in up as well as down direction
Unplanned
Last Updated: 03 Jan 2017 20:38 by ADMIN
When "TextSearchMode" is set to "Contains", IsEditable="True" and IsReadOnly="True": it should be possible to select all or some of the text and by pressing delete or backspace the selected text should be removed.
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.
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>
Completed
Last Updated: 17 Oct 2016 15:05 by ADMIN
ADMIN
Created by: Yana
Comments: 0
Category: ComboBox
Type: Bug Report
0
Available in LIB version 2016.3.1017, it will be also available in the 2016 R3 SP1 release.