Hello,
I use .NetAdvantage 2011.1. When I format a cell via the CssClass property, it works great in Firefox but not in IE9. I've declared the css classes as follows:
TBODY > TR > TD.CellReadOnly
{
background-color:#ff0000;
}
e.RowIsland.Rows[x].Items[iColumnIndex].CssClass = "CellReadOnly";
Hello Frank,
I tested your code with WHDG and IE 9 and it appears to work on my side :
void WebHierarchicalDataGrid1_RowIslandDataBound(object sender, Infragistics.Web.UI.GridControls.RowIslandEventArgs e) { e.RowIsland.Rows[1].Items[1].CssClass = "CellReadOnly"; }
Hello Rado,
it still isn't working in IE. I've packed the grid inside a UltraWebPanel in a .ascx file. Could that cause the issue for IE's problems?
Best regards,
Frank
Hello Radoslav,
thanks for your help. I have no idea what has happened - now it works. Probably I've had some things still in the browser cache - I don't know. Anyways, thanks for your support.
Hi Frank,
If you comment the panel, does the css class work ? Can you package a small page reproducing this issue and attached it here. I will troubleshoot it.