Hi,

I've a problem with table-header on consecutive pages, the table-header cell number two (with content "some text 2") is not printed, but the "member" contents (see below) of this column is printed - any hints what I'm doing wrong? I do the following...

---- snip
<fo:layout-master-set>
<fo:simple-page-master master-name="simpleA4" page-height="29.7cm" page-width="21cm" margin-top="2cm" margin-bottom="2cm" margin-left="2cm" margin-right="2cm">
<fo:region-before region-name="header"/>
<fo:region-body region-name="tableheading"/>
<fo:region-after region-name="footer"/>
</fo:simple-page-master>
</fo:layout-master-set>
---- snip
<fo:flow flow-name="tableheading">
<fo:block font-size="10pt" space-before="2cm">
<!-- ============ -->
<!-- table layout -->
<!-- ============ -->
<fo:table table-omit-header-at-break="false">
<fo:table-column column-width="2cm"/>
<fo:table-column column-width="12cm"/>
<fo:table-column column-width="2cm"/>
<fo:table-header>
<fo:table-row>
<fo:table-cell text-align="center" border="0.5pt solid black">
<fo:block>some text 1</fo:block>
</fo:table-cell>
<fo:table-cell text-align="center" border="0.5pt solid black">
<fo:block>some text 2</fo:block>
</fo:table-cell>
<fo:table-cell text-align="center" border="0.5pt solid black">
<fo:block>some text 3</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-header>
<fo:table-body>
<xsl:apply-templates select="member"/>
</fo:table-body>
</fo:table>
</fo:block>
</fo:flow>
--- snip


Thanks in advance and maybe you should know that I'm a beginner but I think you'll see this from my code!?

Michael Gasperi


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to