Unplanned
Last Updated: 03 Aug 2016 11:11 by Alexandre
Created by: Alexandre
Comments: 0
Category: ComboBox
Type: Feature Request
3
The combobox lists in Windows 10 settings (see attached pictures) have an interesting behavior which could be integrated by Telerik combox controls. The behavior is as following: when the listbox is opened, it appears above the combobox control with the selected item highlighted. And the placement of the listbox can change if the first item is selected (displayed down direction) or the last item is selected (display up direction).

It's difficult to explain that with simple words, so I suggest to see attached pictures to understand my request.
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;
    }
Completed
Last Updated: 25 Jun 2015 15:31 by ADMIN
ADMIN
Created by: Geri
Comments: 1
Category: ComboBox
Type: Feature Request
0

			
Completed
Last Updated: 14 Sep 2016 13:16 by ADMIN
ADMIN
Created by: Kalin
Comments: 0
Category: ComboBox
Type: Feature Request
6
Available in the 2016 R3 Release.

Please check our help article for more information: 
http://docs.telerik.com/devtools/wpf/controls/radcombobox/features/multiple-selection
Declined
Last Updated: 01 Jun 2016 08:40 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 20:56 by John
Completed
Last Updated: 21 Jul 2014 05:45 by ADMIN
ADMIN
Created by: Kalin
Comments: 0
Category: ComboBox
Type: Bug Report
0

			
Declined
Last Updated: 08 Jun 2016 08:15 by Vernon
Completed
Last Updated: 25 Jun 2015 15:25 by ADMIN
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.
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 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: 10 Feb 2015 15:20 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ComboBox
Type: Bug Report
4

			
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: 22 Jan 2016 11:22 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 21:03 by ADMIN
Currently the control scrolls by group.
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: 17 Feb 2015 10:43 by ADMIN
When the ComboBox is non editable.