|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Testing for existence of non-epty description
> I'd like to rewrite the template so that the header
> is suppressed if none of the TASK elements have
> real DESCRIPTIONs:
>
> <xsl:tempalte match="TASKS">
> <xsl:if at-at-least-one-TASK-has-a-non-empty-DESCRIPTION>
> <xsl:apply-templates select="TASK" />
> </xsl:if>
> </xsl:template>
>
You could try:
<xsl:strip-space elements="DESCRIPTION"/>
<xsl:tempalte match="TASKS">
<xsl:if test="TASK/DECRIPTION[text()]">
<xsl:apply-templates select="TASK" />
</xsl:if>
</xsl:template>
Mike Kay
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








