This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Can apply-templates attribute mode be passed a variable?


> 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@ntlworld.com
work: Michael.Kay@softwareag.com 
> 
>      <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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]