How to let xsl:fo allow table cell to take empty blocks and print mutiple lines

Reisti

New Member
I have a one row and one of the columns has a list of data. Say I have a row, the 3rd column has 0 or more rows. \[code\]<xsl:for-each select="./parts">\[/code\] and for some reason the code I have doesn't seem to work. I am not sure how to implement it. I am getting this error.\[quote\] org.apache.fop.events.LoggingEventListener processEvent The following feature isn't implemented by Apache FOP, yet: table-layout="auto" (on fo:table) (No context info available) [4/1/13 19:14:38:002 CDT] 00000053 SystemErr R org.apache.fop.fo.ValidationException: "fo:table-cell" is missing child elements. Required content model: marker* (%block;)+ (No context info available)\[/quote\]I have this code and this doesn't work.\[code\]<xsl:for-each select="./List"> <fo:table-row> <fo:table-cell border="solid 1px" text-align="center"> <fo:block font-size="8pt"><xsl:value-of select="group" /></fo:block> <fo:table-cell> <fo:table-cell border="solid 1px" text-align="left"> <xsl:for-each select="./parts"> <fo:block font-size="8pt"><xsl:value-of select="partNumber" /><fo:leader /> </fo:block> </xsl:for-each> </fo:table-cell> </fo:table-row></xsl:for-each>\[/code\]
 
Back
Top