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
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: 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
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
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.
Declined
Last Updated: 19 Sep 2016 06:25 by ADMIN
Workaround: use OnDropDownClosed event.
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
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.
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)
Unplanned
Last Updated: 03 Jan 2017 20:46 by ADMIN
Enable the ComboBox to open its DropDown in up as well as down direction
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
The same issue can be observe when placing the control inside ToolBar.
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.
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}" />