Re: Conditional output of XML elements

Subject: Re: Conditional output of XML elements
From: Tony Graham <tgraham@xxxxxxxxxxxxxxxx>
Date: Mon, 9 Aug 1999 12:25:55 -0400 (EST)
At 9 Aug 1999 15:38 GMT, Anders.Wikstrom@xxxxxxx wrote:
 > The names of the item elements and their corresponding values are ouput
 > into a table in a HTML file using XSL.
 > 
 > My problem is that if an element doesnt have a value as element 3 does in
 > the example i don't want a a row with no corresponding value.

This should work, but hasn't been tested:

<xsl:template match="item3">
  <!-- Use normalize() in case the element contains whitespace
       characters -->
  <!-- normalize() defaults to using the value of the context node -->
  <xsl:if test="normalize()">
    <TR><TD><xsl:apply-templates/></TD></TR>
  </xsl:if>
</xsl:template>

This should also work but also hasn't been tested:

<xsl:template match="item3[normalize()]">
  <TR><TD><xsl:apply-templates/></TD></TR>
</xsl:template>

Regards,


Tony Graham
======================================================================
Tony Graham                            mailto:tgraham@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9632
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


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


Current Thread