I have an implicit style:
But i have to scroll up and down, and one after another each row cells turns green if it is supposed to.
How can i fix this?
<telerik:RadGridView.Resources> <Style TargetType="{x:Type telerik:GridViewCell}"> <Setter Property="Foreground" Value="Red" /> <Style.Triggers> <MultiDataTrigger> <MultiDataTrigger.Conditions> <Condition Binding="{Binding IsAllowedToEdit}" Value="True"/> <Condition Binding="{Binding Path=Column.IsReadOnly, RelativeSource={RelativeSource Self}}" Value="False"/> </MultiDataTrigger.Conditions> <MultiDataTrigger.Setters> <Setter Property="Background" Value="#DBFFEC"/> </MultiDataTrigger.Setters> </MultiDataTrigger> </Style.Triggers> </Style></telerik:RadGridView.Resources>But i have to scroll up and down, and one after another each row cells turns green if it is supposed to.
How can i fix this?