This question is locked. New answers and comments are not allowed.
I have custom ComboBox in GridView cell.
In edit mode my custom ComboBox did not look like a GridViewComboBoxColumn ComboBox.How to fix it? What styles should be set?
<telerik:GridViewColumn Header="Группа" IsReadOnly="False"> <telerik:GridViewColumn.CellEditTemplate> <DataTemplate> <ComboBox ItemsSource="{Binding Path=[ClientGroupList]}" SelectedItem="{Binding Path=[ClientGroup], Mode=TwoWay}" DisplayMemberPath="Name" SelectedValuePath="Id" /> </DataTemplate> </telerik:GridViewColumn.CellEditTemplate> <telerik:GridViewColumn.CellTemplate> <DataTemplate> <TextBlock Text="{Binding Path=[ClientGroup].Name}"/> </DataTemplate> </telerik:GridViewColumn.CellTemplate></telerik:GridViewColumn>In edit mode my custom ComboBox did not look like a GridViewComboBoxColumn ComboBox.How to fix it? What styles should be set?