Sorry if it seems I am flooding the list with questions. I am new to this technology and trying to meet a deadline on a project . Any help is appreciated:
I have this table: <xsl:template name="s6_pdf" > <fo:flow flow-name="xsl-region-body"> <fo:block> <fo:table table-layout="fixed" width="100%"> <fo:table-column column-width="proportional-column-width(1)"/> <fo:table-column column-width="proportional-column-width(1)"/> <fo:table-body> <fo:table-row> <fo:table-cell> <fo:block> <xsl:call-template name="image_display_and_upload"> <xsl:with-param name="imagenode" select="." /> <xsl:with-param name="image_number" select="number('3')" /> </xsl:call-template> </fo:block> <fo:block> <xsl:call-template name="image_display_and_upload"> <xsl:with-param name="imagenode" select="." /> <xsl:with-param name="image_number" select="number('4')" /> </xsl:call-template> </fo:block> </fo:table-cell> <fo:table-cell> <fo:block font-family="Arial" font-size="12pt" font-weight="normal" break-after="auto" space-after="10pt" text-align="left"> <xsl:call-template name="text_display_and_edit"> <xsl:with-param name="text_number" select="number('1')" /> </xsl:call-template> </fo:block> <fo:block font-family="Arial" font-size="12pt" font-weight="normal" break-after="auto" space-after="10pt" text-align="left"> <xsl:call-template name="text_display_and_edit"> <xsl:with-param name="text_number" select="number('2')" /> </xsl:call-template> </fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:block> </fo:flow> </xsl:template> The second block in the second row is not getting written out. Even if I make it the only block of that cell, nothing gets written out. However, if I try and write the first block twice I am succesfully: <fo:table-cell> <fo:block font-family="Arial" font-size="12pt" font-weight="normal" break-after="auto" space-after="10pt" text-align="left"> <xsl:call-template name="text_display_and_edit"> <xsl:with-param name="text_number" select="number('1')" /> </xsl:call-template> </fo:block> <fo:block font-family="Arial" font-size="12pt" font-weight="normal" break-after="auto" space-after="10pt" text-align="left"> <xsl:call-template name="text_display_and_edit"> <xsl:with-param name="text_number" select="number('1')" /> </xsl:call-template> </fo:block> </fo:table-cell> This works. Both block are written out. It seems the issue is related to the size of the content. Text_number 2 contains a long column of text. What can I do to resolve this? Thanks, Luke --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]