[Home] [By Thread] [By Date] [Recent Entries]

Subject: Re: using variable in mode attribute
From: Niko Matsakis <niko@xxxxxxxxxxxxx>
Date: Fri, 10 Jan 2003 16:56:32 -0500
Something which might work for you in this particular instance would be to replace

<xsl:template match="B" mode="id1">
   whatever
   <xsl:apply-templates select="self::B" mode="table"/>
</xsl:template>

<xsl:template match="B" mode="table">
   table
</xsl:template>

with

<xsl:template match="B[@ID='id1']">
  whatever
  <xsl:call-template name="b-table"/>
</xsl:template>

<xsl:template match="B" name="b-table">
  table
</xsl:template>


Niko Matsakis



-- DataPower technology http://www.datapower.com




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



Current Thread
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member