Hello Telerik team!
When the row validation is failed row background is red and this is ok. But when I select this row it's background is still red. I'm trying to change this behaviour using trigger. But this trigger has no effect. What am I doing wrong. Could you help me, please.
<Style.Triggers> <MultiTrigger> <MultiTrigger.Conditions> <Condition Property="IsValid" Value="false"/> <Condition Property="IsSelected" Value="true"/> </MultiTrigger.Conditions> <MultiTrigger.Setters> <Setter Property="Background" Value="Blue"/> </MultiTrigger.Setters> </MultiTrigger> </Style.Triggers>