xsl-list
[Top] [All Lists]

RE: using variable in mode attribute

2003-01-10 14:37:43
I have the following code which does not work.
if I replace the mode="$BID" with mode="id1" in line 4, it 
works. so my question is 
does the mode attribute take a variable?

No, it doesn't.

if it does not, what should I do?

It depends what you're trying to achieve. For simple cases, use
<xsl:choose>. For more complex situations, look at Dimitre Novatchev's
FXSL approach.

Michael Kay
Software AG
home: Michael(_dot_)H(_dot_)Kay(_at_)ntlworld(_dot_)com
work: Michael(_dot_)Kay(_at_)softwareag(_dot_)com 

xml:
<A>
      <B ID="id1"/>
</A>
xsl:
      <xsl:template match="A">
              <xsl:for-each select="B">
                      <xsl:variable name="BID" select="@ID"/>
                      <xsl:apply-templates select="self::B" 
mode="$BID"/>
              </xsl:for-each>
      </xsl:template>

      <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>

thanks

Long

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



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



<Prev in Thread] Current Thread [Next in Thread>