Hi,
I'm trying to change background colour for cells with value = "NO".
I found in one of the demo example this code:
<telerik:StyleRule Condition="UnitPrice > 10">
<Style TargetType="telerik:GridViewCell" BasedOn="{StaticResource GridViewCellStyle}">
<Setter Property="Background" Value="{telerik:Windows8Resource ResourceKey=AccentBrush}" />
<Setter Property="Foreground" Value="{telerik:Windows8Resource ResourceKey=MainBrush}" />
</Style>
</telerik:StyleRule>
Could I use StyleRule and Condition for string values like below ?
<telerik:StyleRule Condition="MyColumn = 'YES' ">
It doesn't work for me ...