Hi everyone. I'm trying to put this simple cycle to work :
<xsl:for-each select="$line">
<xsl:for-each select="$column">
<td><xsl:text>C</xsl:text></td>
</xsl:for-each>
<xsl:if test="$line>1">
<tr><xsl:text>L</xsl:text></tr>
</xsl:if>
</xsl:for-each>
but i'm always getting an exception: Can not convert number to a NodeList
.
Yes this variables are numbers that must be passed to my xsl file.
I'm initializing them this way
<xsl:variable name="column" select="number(fi:styling/@column")/>
.
Any ideas how to workaround this? I've tried exslt.org but haven't found
what i needed.
TIA,
CarlosN.
--~------------------------------------------------------------------
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>
--~--