This question is locked. New answers and comments are not allowed.
I need to place a combobox option in Telerik's RadGridView Column, but the comboboxColumn doesn't work really well with my data
I would like to do something similar to the following using a GridViewDataColumn or any other alternative to the ComboBoxColumn
<data:DataGridTemplateColumn Header="Types" Width="100" >
<data:DataGridTemplateColumn.CellTemplate >
<DataTemplate >
<TextBlock x:Name="typeCell" Text="{Binding Types}" />
</DataTemplate>
</data:DataGridTemplateColumn.CellTemplate>
<data:DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<ComboBox x:Name="typeSelection"
ItemsSource="{Binding typeList.Types}"
SelectedItem="{Binding Types,Mode=TwoWay}"
SelectionChanged="typeSelection_SelectionChanged"
Loaded="typeSelection_Loaded">
</ComboBox>
</DataTemplate>
</data:DataGridTemplateColumn.CellEditingTemplate>
I would like to do something similar to the following using a GridViewDataColumn or any other alternative to the ComboBoxColumn
<data:DataGridTemplateColumn Header="Types" Width="100" >
<data:DataGridTemplateColumn.CellTemplate >
<DataTemplate >
<TextBlock x:Name="typeCell" Text="{Binding Types}" />
</DataTemplate>
</data:DataGridTemplateColumn.CellTemplate>
<data:DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<ComboBox x:Name="typeSelection"
ItemsSource="{Binding typeList.Types}"
SelectedItem="{Binding Types,Mode=TwoWay}"
SelectionChanged="typeSelection_SelectionChanged"
Loaded="typeSelection_Loaded">
</ComboBox>
</DataTemplate>
</data:DataGridTemplateColumn.CellEditingTemplate>