A customer of ours uses XSL FO for generating PDF output. He has an issue with descriptions in a table where the cells are split over the page end. The limitation is that he uses an XSL editor instead of direct XSL. This editor lets you add XSL snippets, but you cannot access all the levels of the XSL.
Switching to XSL without an editor is not an option.
In XSL a simple solution will look like:
<fo:table-row>
<xsl:attribute name="keep-together.within-page">always</xsl:attribute>
<fo:table-cell>
</fo:table-cell>
</fo:table-row>
But the table-row tag is not accessible from the editor. I can set it on a table-cell level. Is that possible?
So something like:
<fo:table-row>
<fo:table-cell>
<xsl:attribute name="../keep-together.within-page">always</xsl:attribute>
</fo:table-cell>
</fo:table-row>