Answered
26 Oct 2016
Link to this post
Hi Trung Son,
The property "TableFooterRepeatEnabled" is a boolean field that can be set to true or false. Setting this value to true will repeat the table footer on each page. This only works if you configure your page to use a table with a "tfoot" tag similar to below, hope this helps:
<table>
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Sum</td>
<td>$180</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
</table>