I am populating a RadGrid, and afterwards, I want to loop through the rows and change the backcolor based on the data in one of the columns. I cannot make it work. Any suggestions? This is a VB.Net winforms application.
the way to change the backcolor of rows is to use the RowFormatting event. Have a look at this link about formatting rows.
If you want to format cells, then in a similar way you would use the CellFormatting event. this link will tell you about formatting the cells using the CellFormatting event.
Hope that helps, but let me know if you need more help