[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: The XSL-List Digest V2 #488
Suppose I have the following XML: <TASKS> <TASK> <NAME>Clean</NAME> <DESCRIPTION>Make sure it's clean</DESCRIPTION> </TASK> <TASK> <NAME>Wash</NAME> <DESCRIPTION /> </TASK> </TASK> And the following XSLT template: <xsl:template match="TASKS"> <P>Some header info</P> <xsl:apply-templates select="TASK" /> </xsl:template> 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> Any ideas? I know how to count the DESCRIPTIONs, but not how to count the non-empty ones. Thanks. --philip borenstein 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
|