H
harryajh
Using xalan 2.7.1
I'm using XSLT extension functions to retrieve special bits of code
from a java class static methoth during transformation.
What I'd like to know is if there is anyway to specify a param passed
in to the stylesheet as an argument in the extension function?
I currently something like this -
<xsl:value-of select="ext:getXSLTCode('part1', 'true')"/>
but what I'd like to do is something like this -
<xsl
aram name="partNo"/>
<xsl:value-of select="ext:getXSLTCode($partNo, 'true')"/>
Obvioulsy this doesn't work & nor does having a nested value-of - has
anyone any idea if this is actually possible? if not any workarounds?
thanks in advance
harry
I'm using XSLT extension functions to retrieve special bits of code
from a java class static methoth during transformation.
What I'd like to know is if there is anyway to specify a param passed
in to the stylesheet as an argument in the extension function?
I currently something like this -
<xsl:value-of select="ext:getXSLTCode('part1', 'true')"/>
but what I'd like to do is something like this -
<xsl
<xsl:value-of select="ext:getXSLTCode($partNo, 'true')"/>
Obvioulsy this doesn't work & nor does having a nested value-of - has
anyone any idea if this is actually possible? if not any workarounds?
thanks in advance
harry