Hi,
You have to change your HTML one way or another. : ) The easiest way to turn off all thead repeating in the page is to add the following CSS rule:
Code: CSS
thead
{
display: table-row;
}
You can also apply this on a specific thead element individually. By default thead has display as "table-header-group". As soon as you change that, it will no longer be considered as a repeating header.
Hope this helps.
Thanks!