Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 6th, 2006, 08:52 AM
Registered User
 
Join Date: Jun 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default If Then Statements in XSL

I have a question about if then statements in XSLT. I would like to display a line of code only if a specific data item is not null. It seems to be a bit of a daunting task for me, an XML/XSL n00b, but I'm hoping that some of the experts here will know just the trick.

Explanation below:

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 empty in the XML. In these instances, I would like the link to not show, The link should only show up when Selling_UM_1 is populated. So I'm thinking something like:

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

Else {
Display &nbsp;
}


I just don't know how to turn that into XSL.

Could anyone offer some suggestions?

Thanks

 
Old June 6th, 2006, 09:03 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Firstly, don't do this:

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

when you could do this:

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

In the first case you are constructing a tree, which involves copying data and allocating memory. In the second case you are merely creating a reference to existing nodes without copying anything.

Secondly, what do you mean by "empty"? There's a difference between the element being absent, and the element being present but without any content. It might even be present with irrelevant content, e.g <Selling_UM_1> </Selling_UM_1>. For convenience, I'll assume that you test for emptyness by testing whether normalize-space(Selling_UM_1) is a zero-length string.

Your logic is then:

<xsl:choose>
  <xsl:when test="normalize-space($unit)">
    <a href="whatever"/>
  </xsl:when>
  <xsl:otherwise>#xa0;</xsl:otherwise>
</xsl:choose>




Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old June 6th, 2006, 03:02 PM
Registered User
 
Join Date: Jun 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
quote:Originally posted by mhkay
 Firstly, don't do this:

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

when you could do this:

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

In the first case you are constructing a tree, which involves copying data and allocating memory. In the second case you are merely creating a reference to existing nodes without copying anything.

Secondly, what do you mean by "empty"? There's a difference between the element being absent, and the element being present but without any content. It might even be present with irrelevant content, e.g <Selling_UM_1> </Selling_UM_1>. For convenience, I'll assume that you test for emptyness by testing whether normalize-space(Selling_UM_1) is a zero-length string.

Your logic is then:

<xsl:choose>
  <xsl:when test="normalize-space($unit)">
    <a href="whatever"/>
  </xsl:when>
  <xsl:otherwise>#xa0;</xsl:otherwise>
</xsl:choose>




Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
Worked great! Thanks!






Similar Threads
Thread Thread Starter Forum Replies Last Post
xsl:param and xsl:apply-templates' "select" newbieboobers XSLT 1 March 25th, 2008 07:23 PM
Pass link values as xsl:parameter to php5 then xsl pauljr8 XSLT 1 July 2nd, 2007 10:32 PM
differnce between xsl:apply-templates and xsl:call chandu.mca007 XSLT 2 June 12th, 2007 04:12 AM
xsl advise needed - Replacing UID through XSL Billyl XSLT 6 February 28th, 2006 05:46 AM
XSL Transform with xsl string NOT xsl file skin XSLT 0 June 16th, 2003 07:30 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.