Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm generating a PDF from HTML using Pisa. The pisa documentation (section 11.3) says that it is possible to repeat a row "It is possible to repeat table rows if a page break occurs within a table. The number of repeated rows is passed in the attribute repeat." Their example code is:

<table repeat="1">>
  <tr><th>Column 1</th><th>...</th></tr>
  ...
</table>

My code is

<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>

Any ideas as to why the first <tr> isn't being repeated on page break?

share|improve this question

1 Answer

up vote 2 down vote accepted

The solution is to not nest your tables. For some reason Pisa does not repeat the header if the cells are nested tables. Rework your structure to exclude nested tables and it should work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.