I have a GridView and I am using a CellStyleSelector to set the background color of different cells depending on some conditions and it is working fine.
Now I would like to be able to select a row and change the background color of the whole row, right now it is only working on the cells that are not using the CellStyleSelector.
I have seen that I can change the color of the selected row, like this:
<
Style
TargetType
=
"telerik:GridViewRow"
>
<
Setter
Property
=
"SelectedBackground"
Value
=
"LightGray"
/>
<
Setter
Property
=
"MouseOverBackground"
Value
=
"DarkGray"
/>
</
Style
>
But how can also be changed on cells with CellStyleSelector?