Hi,
I want to access the cells of the current row in the ItemDataBound event handler.
This throws exception
void RadGrid1_ItemDataBound(object sender, Telerik.WebControls.GridItemEventArgs e)
{
GridDataItem item = e.Item as GridDataItem;
//item["Naam"].Text --throws exception, my column is not found
DataRowView row = item.DataItem as DataRowView;
//row[0] --works ok
}
What I need to do the to change the color of the ForeColor property of the cell I want to access, Is there a way to access a specified cell with its index or even column unique name?