Hi Telerik Team.
I have a problem with the rows using the RadGridView and implicit styles, I'll explain:
I have a RadGridView and when it is loaded and I click over a columns name to sort the rows everything is ok, the problem
arise when I added a rowstyle to highlight rows which contain specific data.
<
telerik:RadGridView.RowStyle>
<Style TargetType="telerik:GridViewRow" BasedOn="{StaticResource GridViewRowStyle}">
<Style.Triggers>
<DataTrigger Binding="{Binding Status}" Value="2">
<Setter Property="Background" Value="Red"/>
</DataTrigger>
</Style.Triggers>
</Style>
</telerik:RadGridView.RowStyle>
After add those lines when I click over the column name to sort, the rows disappear.
Please any help is really helpful. Thanks.