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