Subject: RE: Can apply-templates attribute mode be passed a variable?
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Mon, 8 Jul 2002 09:58:35 +0100
|
> Can apply-templates attribute mode be passed a variable? i.e.
> is the following code legal?
No and no. You have to use <xsl:choose>, I'm afraid.
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
>
> <xsl:for-each select="x">
> <xsl:variable name="mode" select="@attr"/>
> <xsl:apply-templates select="self::x" mode="$mode"/>
> </xsl:for-each>
>
>
> <xsl:template match="x" mode="a">
> ...
> </xsl:template>
>
> <xsl:template match="x" mode="b">
> ...
> </xsl:template>
>
> ...
>
> Any help much appreciated.
> Seema
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|