XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Show tree view Topic
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Postnext
fsda fdasSubject: Displaying Text in XSLT only if specific attribute has a value
Author: fsda fdas
Date: 06 Jun 2006 09:37 AM
I have a question about if then else statements in XSLT. I curently have links setup like the following:

<a href="/express/index.cgi?add_by_express={$prod},{$unit},1">Read More</a><br/>

Where unit is defined as:

<xsl:variable name="unit">
<xsl:value-of select="Selling_UM_1"/>
</xsl:variable>

However, there are multiple instances where the value of Selling_UM_1 is null. In these instances, I would like the link to not show, The link should only show up when Selling_UM_1 is populated. Could anyone provide me with some advice or a step in the right direction?

Thanks

Posttop
Tony LavinioSubject: Displaying Text in XSLT only if specific attribute has a value
Author: Tony Lavinio
Date: 06 Jun 2006 09:41 AM
<xsl:if test="Selling_UM_1">
<a>href="/express/index.cgi?add_by_express={$prod},{$unit},1"&gt;Read More</a><br/>
</xsl:if>

Or, you could do something like
<xsl:if test="normalize-space($unit) != ''">
...
</xsl:if>
if it's possible that $unit might have some whitespace but otherwise
be empty.

 
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.