Milen Dimitrov wrote:
Hi,
can somebody help me with this issue:
I have a very long tables that spreads on more than 1 page, and I want to have the columns titles on every page. I cannot put the columns titles in fo:region-before because the tables are different.
10x
This is straight forward. You just need to define a header row. This is done as follows:
<fo:table> <fo:table-column column-number="1" width="2cm"/> <fo:table-column column-number="2" width="2cm"/> <fo:table-column column-number="3" width="2cm"/> <fo:table-header> <fo:table-row> <fo:table-cell>Heading 1</fo:table-cell> <fo:table-cell>Heading 2</fo:table-cell> <fo:table-cell>Heading 3</fo:table-cell> </fo:table-row> </fo:table-header> <fo:table-body>
..
</fo:table-body> </fo:table>
Chris
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
