Hi,
How do I programmatically set the background of a radgrid cell to an image? I'm currently setting the background colour but need to set it to an image and still be able to have foreground text over the top. Here's what I'm currently using...
How do I programmatically set the background of a radgrid cell to an image? I'm currently setting the background colour but need to set it to an image and still be able to have foreground text over the top. Here's what I'm currently using...
For Each grow As Telerik.Web.UI.GridDataItem In GridView1.Items
grow.Cells(1).BackColor = Drawing.Color.Transparent
grow.Cells(1).Text = "Blah"
Next