Julia Reynolds wrote:
I upgraded my fop version to 0.20.5, still no love from the fo:table. Is the code below correct?

Probably not. Having two xsl:apply-templates, the second one for th/cell, is highly suspect. Furthermore you seem to expect some th as child of the context node here: > <xsl:for-each select="th[position () =1]/cell"> ^^^ But reporttable/th as child of the same context node here > <xsl:apply-templates select="reporttable/th"/> ^^^^^^^^^^ You should generate the FO document as a file and examine it whether you get rows with cells in your fo:table-header. Furthermore, you probably apply templates twice for the th element, once within the fo:table-header, and a second time in the fo:table-body using the catch-all xsl:apply-templates > <fo:table-body> > <xsl:apply-templates/> > </fo:table-body>


Should I be seeing headers on every page?

What do you mean with this?

J.Pietschmann

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



Reply via email to