3
我使用Pisa從HTML生成PDF。比薩documentation(第11.3節)指出可以重複一行「如果表中發生分頁符,可以重複表格行,重複的行數在屬性重複中傳遞。」他們的示例代碼:如何使用Pisa重新生成<th>(xhtml2pdf)
<table repeat="1">>
<tr><th>Column 1</th><th>...</th></tr>
...
</table>
我的代碼是
<table repeat="1" width="100%">
<tr>
<th align='left'>name</th>
<th align='right'>text</th>
</tr>
<tr><td colspan=2>
<table>
<tr><td>stuff</td></tr>
</table>
</td></tr>
...
</table>
任何想法,爲什麼沒有被重複分頁符第一<TR>?