我正在使用Play框架。我可以使用PDF模块生成PDF。我的问题是我想在每个页面中添加表头。这是我的代码
<table width="100%" border="1" id="example" cellspacing="0" cellpadding="0" style="border-collapse: collapse" class="-fs-table-paginate: paginate;">
<thead>
<tr>
<th align="center"><b>Items</b></th>
<th align="center"><b>Quantity</b></th>
<th align="center"><b>Unit Price</b></th>
<th align="center"><b>Amount(Rs).</b></th>
</tr>
</thead>
.....
</table>
我看到了here。我添加了-fs-table-paginate:paginate;在课堂上。但表头不会在下一页继续。 我不知道如何使用它。你能帮帮我吗。
编辑:可以随便帮帮我....答案 0 :(得分:1)
你应该添加“-fs-table-paginate:paginate;”到style属性,而不是class属性:
<table width="100%" border="1" id="example" cellspacing="0" cellpadding="0" style="border-collapse: collapse; -fs-table-paginate: paginate;">