This question is locked. New answers and comments are not allowed.
Hello,
In my grid, I have only one column which is a combo box. When I click on the combo box to select the row, the row doesn't get selected.
Here the XAML code for the combo box -
In my grid, I have only one column which is a combo box. When I click on the combo box to select the row, the row doesn't get selected.
Here the XAML code for the combo box -
<telerikGrid:GridViewDataColumn HeaderText="Functions">
<telerikGrid:GridViewDataColumn.CellStyle>
<Style TargetType="GridView:GridViewCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="GridView:GridViewCell">
<Controls:RadComboBox ItemsSource="{Binding AllFunctions}" DisplayMemberPath="FunctionName" SelectedItem="{Binding Path=Function, Mode=TwoWay}"></Controls:RadComboBox>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</telerikGrid:GridViewDataColumn.CellStyle>
</telerikGrid:GridViewDataColumn>
