I have an iggrid with many multicolumnheader columns. I am looking to find a way to place a thicker border around the outside of each multicolumnheader so the user can more easily distinguish what the data in the grid represents. The thicker border should continue throughout the data portion of the grid as well (not just at the header). I am using the wrapper for MVC in a razor view to setup my grid.
thanks
Hello Rosco5737,
This can be achieved only with CSS. You should use the :nth-child CSS pseudo selector. Here is an example:
td:nth-child(3)
Attached you can find a working sample.
Best regards,Martin PavlovInfragistics, Inc.
That's what I was looking for. It works great, thanks!
regards,
Rosco