[Home] [By Thread] [By Date] [Recent Entries]
Hi,
> I can check if a nodes exists or not in XSL not sure how to check if it has > any data. Just define what any data means to you and check that for existence. For instance if by has data you mean that it should have at least one text node then you can simply check if a text node exists inside fruits: <xsl:if test="mygarden/fruits/text()"> ... </xsl:if> If any data means any element then you will get <xsl:if test="mygarden/fruits/*"> ... </xsl:if> Hope that helps, George ----------------------------------------------- George Cristian Bina <oXygen/> XML Editor & XSLT Editor/Debugger http://www.oxygenxml.com Subbiah wrote: Hi, I want to find out if a node say <fruits></fruits> in my XML file has data
|

Cart



