This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Newbie question: 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]