How to get nested header row number in afterGetColHeader

Tags: #<Tag:0x00007f8b23c38768>

I need to set different styles for rows of a nested header. I can easily set the same style for a column in afterGetColHeader but this only provides the column number.

How can I find the row number of the nested header?

Can I maybe add metadata to the th element via extra fields on objects in the nestedHeaders list?

Hey @chris2

you can style those rows with CSS and childNodes http://jsfiddle.net/znkmwfpt/1/

Thank you - walking down the parentNodes worked perfectly.

You’re welcome :slight_smile: I’m happy to help.