xsl-list
[Top] [All Lists]

RE: if statement

2003-07-02 08:18:44

How can I test if my current node has a attribute named 'wrap' and if
it has the value 'yes' I would have to add some things with <xml:text>
if 'wrap' does not exist or it is 'no', I don't want to add this things.

Hi,

Use choose / when:

<xsl:choose>
  <xsl:when test="@wrap='yes'">
    <wrap>
      <xsl:apply-templates/>
    </wrap>
  </xsl:when>
  <xsl:otherwise>
    <xsl:apply-templates/>
  </xsl:otherwise>
</xsl:choose>

where <wrap> is whatever you intend to use to wrap the text.

You may want to cover case issues by using:

<xsl:when test="translate(@wrap,'yes','YES') = 'YES'">

cheers
andrew

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.491 / Virus Database: 290 - Release Date: 18/06/2003
 

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



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