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

Re: Newbie question: conditional page break

Subject: Re: Newbie question: conditional page break
From: Peter Davis <pdavis152@xxxxxxxxx>
Date: Wed, 13 Mar 2002 22:52:13 -0800
html conditional page break
On Wednesday 13 March 2002 22:03, stevenson wrote:
> I guess this is what you are looking for
> <xsl:value-of select="TABLE_TITLE"/><br/>

Um, this is not conditional (although it will probably get what you want, if 
you don't mind always having the <br/> -- HTML will probably ignore it if 
there is other content in your <td>).  For conditional, try something like:

<xsl:choose>
  <xsl:when test="normalize-space(TABLE_TITLE)">
    <xsl:value-of select="TABLE_TITLE"/>
  </xsl:when>
  <xsl:otherwise>
    <br/>
  </xsl:otherwise>
</xsl:choose>

If TABLE_TITLE can have anything other than just plain text, and you want to 
include that in the test and the output, then you might be better off with 
this (although the above will probably be fine):

<xsl:choose>
  <xsl:when test="TABLE_TITLE/* or TABLE_TITLE//text()[normalize-space(.)]">
    <xsl:apply-templates select="TABLE_TITLE"/>
  </xsl:when>
  <xsl:otherwise>
    <br/>
  </xsl:otherwise>
</xsl:choose>


-- 
Peter Davis
I have more humility in my little finger than you have in your whole 
____BODY!
		-- from "Cerebus" #82

 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.