I am trying to change the row background to a picture if the cell text equals EOL. Tried changing the attributes but cannot find the correct syntax. and is there a way to format the size of the jpg doing this as well to change the height and width.
Protected Sub myRadGrid_ItemDataBound(sender As Object, e As GridItemEventArgs) Handles myRadGrid.ItemDataBound If TypeOf e.Item Is GridDataItem Then Dim item As GridDataItem = CType(e.Item, GridDataItem) Dim Cell As TableCell = item("Type") Dim text As String = Cell.Text If text = "EOL" Then item.Attributes.Add(Style.background = "../Images/wallpaper_big-wDD_cs.jpg") End If End If End Sub