
|
Elements
|
Unsupported formats
|
Supported formats
|
|
Header
|
Content enclosed within <thead>...</thead> inside table body.
|
Content should be enclosed within
<section id="header-container"class="">
<div id="pdfgen-header">
...
</div>
</section>
CSS required for header content should be provided as follows:
<style>
#pdfgen-header {
}
</style>
|
|
Footer
|
Content enclosed within <tfoot>...</tfoot> inside table body.
|
Content should be enclosed within
<section id="footer-container"class="">
<div id="pdfgen-footer">
...
</div>
</section>
CSS required for footer content should be provided as follows:
<style>
#pdfgen-footer {
}
</style>
|
|
Page number
|
<span
class="pagenum"></span>
<style>
*.pagenum:after {
counter-increment: page;
content: "" counter(page);
}
</style>
|
<span class="pageNumber"></span>
To get total page number count use
<span class="totalPage"></span>
|