I'm writing an application which iterates through the rows of an unbound RadGridView and changes the value and formatting of a particular cell as it goes. I'm having no issue iterating through the rows, but when I get to the point of calling for a cell's value or formatting to change the cell empties of all visible data instead.
The way I'm iterating through the cells and changing the value is like so:
The way I'm iterating through the cells and changing the value is like so:
foreach
(GridViewRowInfo row In rgvFiles.Rows)
{
row.Cells[2].Value =
"New Text"
;
row.Cells[2].Style.BackColor = Color.DarkGreen;
row.Cells[2].Style.ForeColor = Color.White;
}