Re: [xsl] using variable in mode attribute

Subject: Re: [xsl] 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