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]

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?

     <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


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