Subject: Can apply-templates attribute mode be passed a variable?
From: seema_mehta@xxxxxxxxx
Date: Mon, 8 Jul 2002 13:37:17 +1200
|
Can apply-templates attribute mode be passed a variable? i.e. is the
following code legal?
<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
|