|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Conditional output of XML elements
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








