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]

How do I do an If sort of thing..


Kevin,

Sorry if I've sent this twice

<xsl:choose>
  <xsl:when test="$menu = '1'">
  </xsl:when>
  <xsl:when test="$menu = '2'">
  </xsl:when>
</xsl:choose>

Tim

Choose can also be like so ...
<xsl:when test="order/@value = $default">
or
<xsl:if test="not( (not(/authen/username)) and (/state/errormessage =
'Invalid Password'))">
or
<xsl:when test="settings/language"> (the node exists)

-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Kevin Duffey
Sent: Monday, 30 April 2001 4:46 PM
To: xsl-list@lists.mulberrytech.com
Subject: [xsl] How do I do an If sort of thing..


Hey all,

I am trying to do something probably pretty basic. I pass in a variable (or
a //root/node/value path). I want to test for a specific value. For example:

<xsl:choose>
  <xsl:when test="{$menu} == 1">
  </xsl:when>
  <xsl:when test="{$menu} == 2">
  </xsl:when>
</xsl:choose>

Basically, a switch() type of statement. Is this possible..if so, can
someone kindly show me an example of how to do this.

Thanks.


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


 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]