xml - How to make fo:table-cell wrap text to a new line? -
my generated .pdf file has few cells in 1 row , need text in each cell wrap new line once cell runs out of space. included fo:block wrap-option="wrap" .xsl file doesn't seem work. sample of have if can tell me doing wrong appreciate.
<fo:table-row> <fo:table-cell> <fo:block wrap-option="wrap"> <xsl:value-of select="cust_num1"/> </fo:block> </fo:table-cell> <fo:table-cell> <fo:block wrap-option="wrap"> <xsl:value-of select="cust_num2"/> </fo:block> </fo:table-cell> <fo:table-cell> <fo:block wrap-option="wrap"> <xsl:value-of select="cust_num3"/> </fo:block> </fo:table-cell> </fo:table-row>
Comments
Post a Comment