[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

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)
conditional output xml xsl
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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.