Hi Telerik Team!!
Sorry to bother you, but one more time I have an issue :S,
I have a RadGridView and one of the columns has a datatemplate (button), i.e. if I select the row 1 and after I click the button from the row 5, the row 1 keeps selected.
Sorry to bother you, but one more time I have an issue :S,
I have a RadGridView and one of the columns has a datatemplate (button), i.e. if I select the row 1 and after I click the button from the row 5, the row 1 keeps selected.
<
telerik:GridViewDataColumn Header="title" >
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<telerik:RadButton Content="{Binding Value}"
Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}},
Path=DataContext.X}"
CommandParameter="{Binding Number}"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
Thanks.