Thanks,... i know about the onBeforeCellRender.
But: how to put same background for parent AND child- rows ??
This workaround is not working correctly ("vorplanung_" are my childs...):
if(args.cell.resource.substring(0, 11)!='vorplanung_')
{
if(tmpLastColor == "#EFEEEC")
{
tmpLastColor = "#ffffff";
}
else
{
tmpLastColor = "#EFEEEC";
}
}
args.cell.backColor = tmpLastColor;