G
G.
How to increment global xsl:variable?
I've daclared variable:
<xsl:variable name="my-var" select="0" />
Somewhere else I do something like this:
<xsl:variable name="my-var" select="$my-var +1" />
but this creates new local variable and initialize it with value of global
variable.
How to increment xsl:variables? Is it even possible?
G.
I've daclared variable:
<xsl:variable name="my-var" select="0" />
Somewhere else I do something like this:
<xsl:variable name="my-var" select="$my-var +1" />
but this creates new local variable and initialize it with value of global
variable.
How to increment xsl:variables? Is it even possible?
G.