I am using CSS print media query to modify page layout when printing and I am unable to set the following. All other styles are working properly.
@media
print
{
thead{
display
:
table-header-group
;}
tr{
page-break-inside
:
avoid
;}
}
The following post is quite old, but should still work, however it doesn't. All I see where I expect to see the header on each page is a small black border box just under the first column header on each page as seen in the attached files.
http://www.telerik.com/support/code-library/printing-grid-headers-on-every-page
Page breaks also aren't working to prevent rows from being cutoff. The grid spans multiple pages and rows should not be cutoff between pages.
Any suggestions are greatly appreciated.