I need to have a button on a form that when clicked - iterate through all rows of the RADGridview and change some of the rows background color according to some criteria.
All of the samples suggest using 'RowFormatting' event, but it doesn't sound applicable here.
So if my code looks like:
...
}
How do I make the background of the row corresponding to the i'th rowInfo become red?
Thanks
All of the samples suggest using 'RowFormatting' event, but it doesn't sound applicable here.
So if my code looks like:
foreach (GridViewRowInfo rowInfo in grdOrderlinesBase.Rows)
{...
}
How do I make the background of the row corresponding to the i'th rowInfo become red?
Thanks