Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
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,
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.
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>