Hi @jan_blaha
After I changed the table html in below form (thead, tbody, tfoot)
I found the tfoot is repeating in each page, because I want to repeat and control the element in header-footer.html, could I disable that tfoot repeaing behavior? or I should always use thead, tfoot in header-footer.html, but I tested the thead will not repeat.
I checked pdf-utils docs but not see any talking about tfoot, please give some advise. thanks.
https://jsreport.net/learn/pdf-utils#merge
<table cellpadding="0" cellspacing="0">
<thead>
<tr class="heading">
<td>
Item
</td>
<td>
Price
</td>
</tr>
</thead>
<tbody>
{{#each GeneralView}}
<tr class="item">
<td>
{{name}}
</td>
<td>
$ {{price}}
</td>
</tr>
{{/each}}
</tbody>
<tr class="total">
<td></td>
<td>
Total: ${{total GeneralView}}
</td>
</tr>
<tfoot>
<tr class="total">
<td>this is tfoot are will be repeated in each page</td>
<td>
Testing
</td>
</tr>
</tfoot>
</table>