0

I am developing a website with a JQGrid on it. I am also turning the table to PDF. I want to show table header on every page so that PDF converter I have need to set CSS a property THEAD tag of the table to "display:table-header-group".

So how do I set that CSS property in JQGrid?

Thanks.

Laurence
  • 7,633
  • 21
  • 78
  • 129
  • If you examine the structure of the grid created by jqGrid you will see that in consist of *multiple* dives which contains *multiple* tables. Which `` of which table you want change? Moreover I have not enough experience with `display:table-header-group` CSS style, but it looks more helpful in the case that you use some other elements as ``. For example you can use `

    ` or `

    ` elements and display structure close to `
    `. So I don't understand what is your goal of usage `display:table-header-group`.
    – Oleg Mar 06 '13 at 17:53