Hi !
I tried to follow the example for cell formating from your tutorial but this functions is not working
Private Sub radGridView1_CellFormatting(sender As Object, e As Telerik.WinControls.UI.CellFormattingEventArgs)
If e.CellElement.ColumnInfo.HeaderText = "column2" Then
If e.CellElement.Text = "H" Then
e.CellElement.RowInfo.Cells("column1").CellElement.ForeColor = Color.Red
Else
e.CellElement.RowInfo.Cells("column1").CellElement.ForeColor = Color.Black
End If
End If
End Sub
e.CellElement.RowInfo.Cells(0) doesn't have any CellElement property !
How I can access another cell from another column in order to change the colour?
Regards,
Hans