[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Can apply-templates attribute mode be passed a var

Subject: Re: Can apply-templates attribute mode be passed a variable?
From: Mike Brown <mike@xxxxxxxx>
Date: Mon, 8 Jul 2002 00:09:27 -0600 (MDT)
xsl apply templates attributes
seema_mehta@xxxxxxxxx wrote:
> 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>

No. You'll have to do it the long way:

<xsl:choose>
  <xsl:when test="$mode='a'">
    <xsl:apply-templates select="." mode="a"/>
  </xsl:when>
  <xsl:when test="$mode='b'">
    <xsl:apply-templates select="." mode="b"/>
  </xsl:when>
</xsl:choose>

Note "." is going to be a little more efficient than "self::x",
since you already know you're processing an "x" element.

   - Mike
____________________________________________________________________________
  mike j. brown                   |  xml/xslt: http://skew.org/xml/
  denver/boulder, colorado, usa   |  resume: http://skew.org/~mike/resume/

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.