xsl-list
[Top] [All Lists]

[xsl] Problems with XSL-FO Table

2006-12-01 21:13:11
Hi All,

I am trying to build a dynamic table in FO, but having little luck. I keep
receiving the following error:

[error]java.lang.ArrayIndexOutofBoundsException: -2


Here is my XML:

<table>
        <tbody>
                <tr>
                        <td>Cell 1</td>
                        <td>Cell 2</td>
                        <td>Cell 3</td>
                </tr>
                <tr>
                        <td>test 1</td>
                        <td>test 2</td>
                        <td>test 3</td>
                </tr>
                <tr>
                        <td>cell 1</td>
                        <td>cell 2</td>
                        <td>cell 3</td>
                </tr>
        </tbody>
</table>


I am using the Apache FOP processor
Here is my XSLT:

<xsl:template match="table">
        <fo:block>
                <xsl:for-each select="tbody">
                        <fo:table>
                                <fo:table-body>
                                        <xsl:for-each select="tr">
                                                <fo:table-row>
                                                        <xsl:for-each
select="td">
        
<fo:table-cell>
        
<fo:block>
        
<xsl:value-of select="."/>
        
</fo:block>
        
</fo:table-cell>
                                                        </xsl:for-each>
                                                </fo:table-row>
                                        </xsl:for-each>
                                </fo:table-body>
                        </fo:table>
                </xsl:for-each>
        </fo:block>
</xsl:template>

Thanks,

Phil




--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>