In XSLT is it possible to use the value of an xpath expression in a call to a template using an par
- by Cell
I am performing an xsl transform and in it I call a template with a param using the following code
<xsl:call-template name="GenerateColumns">
<xsl:with-param name="curRow" select="$curRow"/>
<xsl:with-param name="curCol" select="$curCol + 1"/>
</xsl:call-template>
This calls a template function which outputs…