Re: [xsl] Newbie question: conditional page break

Subject: Re: [xsl] Newbie question: conditional page break
From: Peter Davis <pdavis152@xxxxxxxxx>
Date: Wed, 13 Mar 2002 22:52:13 -0800
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