or
Private
Sub gvMessages_CellFormatting(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.CellFormattingEventArgs) Handles gvMessages.CellFormatting
For Each row In Me.gvMessages.Rows
If row.Cells("Type").Value = "S" Then
row.Cells("Element").CellElement.BackColor = Color.Aqua
Else
End If
Next
But it did not work. Could you please give me a hint or a link for a solution.
Thnak you very much
Roberto