Subject: Re: use choose in call-templates not possble
From: Liam R E Quin <liam@xxxxxx>
Date: Thu, 10 May 2012 14:45:04 +0200
|
On Thu, 2012-05-10 at 13:25 +0100, henry human wrote:
>
> I am doing this
> <xsl:variable name="Fcfactor">
> <xsl:call-template name="translateDcml">
> <xsl:choose>
> <xsl:when test="FCDecimalPlace != ''">
>
>
> <xsl:with-param name="factor" select="FCDecimalPlace"/>
>
> <xsl:otherwise>
> <xsl:with-param name="factor" select="LCDecimalPlace"/>
> </xsl:otherwise>
> </xsl:choose>
> </xsl:call-template>
> </xsl:variable>
In XSLT 2,
<xsl:call-template name="translateDcml">
<xsl:with-param name="factor"
select="if (FCDecimalPlace ne '') then FCDecimalPlace else
LCDecimalPlace"/>
</xsl:call-template>
In XSLT 1, others have suggested moving the call-template inside the
xsl:choose.
You could also do,
<xsl:with-param name="factor">
<xsl:choose.....>
</xsl:with-param>
Liam
--
Liam Quin - XML Activity Lead, W3C, http://www.w3.org/People/Quin/
Pictures from old books: http://fromoldbooks.org/
Mrs. XML.
|