This question is locked. New answers and comments are not allowed.
I have a radgrid that I check values on ItemDataBind to see if they're in a list. If they're in the list I set the backcolor to Salmon like this:
This works fine in IE9 and Firefox but the colors don't come through on IE7. While I'd love to just say upgrade, not everyone that will use the system is capable of doing so. Is there some sort of workaround or change I can make to get this to work in IE7? Using 2012.1.411.35
I think this worked in previous versions of the control, so I don't know if this is something that was changed in the latest version or not.
Thanks!
protected void RadGrid4_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item.ItemType == Telerik.Web.UI.GridItemType.Item || e.Item.ItemType == Telerik.Web.UI.GridItemType.AlternatingItem)
{
string id = e.Item.Cells[2].Text;
if (!isCurrentShowcase(id))
{
if (e.Item.ItemType == Telerik.Web.UI.GridItemType.AlternatingItem)
{
e.Item.BackColor = System.Drawing.Color.Salmon;
}
else
{
e.Item.BackColor = System.Drawing.Color.LightSalmon;
}
}
}
}
This works fine in IE9 and Firefox but the colors don't come through on IE7. While I'd love to just say upgrade, not everyone that will use the system is capable of doing so. Is there some sort of workaround or change I can make to get this to work in IE7? Using 2012.1.411.35
I think this worked in previous versions of the control, so I don't know if this is something that was changed in the latest version or not.
Thanks!