Header row of grid need to apply css How to achieve the same

0
Hello All, anyone know how to apply css on Header row of grid? Like Header only i wanted in different colors Thanks, Darshan
asked
2 answers
3

Hey Darshan, if you want to run for a specific grid apply a custom class to it with any name. Make sure that the styling Marius provided is then applied to only this custom class and it should work.

Hope this help!

answered
2
.mx-datagrid table thead tr th {
    background: red;
}

 

answered