Is there an EASY way to change the background color of a row based on data in that row?
Any help will be appreciated.
The sample available in http://forums.infragistics.com/forums/p/2701/16506.aspx#16506
Thanks, I guess I should have used the search function better.
On a side note, I wanted to bind to a particular column, all I needed to figure out was the correct syntax for the binding:
<Setter Property="Background" Value="{Binding Path=DataItem.RowStatus, Converter={StaticResource RowStatusConverter}}" />
Now, when that column changes from anywhere in the application, the background will be updated automagically... nice.