How do I change the row colors for an expandable grid?
I am using this for the Main grid, which works great.
.ui-grid-row:nth-child(odd) .ui-grid-cell {
background-color: #E3E3E3; !important;
}
.ui-grid-row:nth-child(even) .ui-grid-cell {
background-color: #FFF; !important;
}
But this is not being picked up by the subgrid.
Thanks
Found this while digging around.
Fixed my issue.