I tried SelectionUnit="FullRow" to select a row with default highlights, and in RadGridView.RowStyle setting Trigger IsSelected with Value="True" to change a selection for all row with bacground colour. Nothing works properly (highlights only a cell), only IsMouseOver works that I expected.
<telerik:RadGridView x:Name=... SelectionUnit="FullRow"
... >
<telerik:RadGridView.RowStyle>
<Style TargetType="{x:Type telerik:GridViewRow}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="true" >
<Setter Property="Background" Value="#CF7600"/>
</Trigger>
</Style.Triggers>
</Style>
</telerik:RadGridView.RowStyle>
Do you have any simple examples for solve this problem?
First image: http://docs.telerik.com/devtools/wpf/controls/radgridview/selection/basics.html
but it's doesn't work.