Hy all,
I have a problem with the "keep-with-next" property.
I use an outer table containing a single row.
This row can contain multiple tables, blocks an so on depending on data.
I want to achieve, that data of the outer row is kept together on one page.
But when I use "keep-with-next" property nothing changes in the pdf file.
here is a snipped from my code
<xsl:template match="article">
...
<fo:table-row keep-with-next="always">
<fo:table-cell >
<fo:block><xsl:value-of select="art_nr"/> <xsl:value-of
select="art_name"/></fo:block>
</fo:table-cell>
<fo:table-cell text-align="right">
<fo:block>Aktions-Nr: <xsl:value-of
select="actionnr"/></fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
...
thanx for your help