|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








