[Home] [By Thread] [By Date] [Recent Entries]
Hello,
If I have this XML structure:
<root>
<elemA>
<elemB>
<elemC id="1"/>
</elemB>
</elemA>
</root>
what is the equivalent of this statement if I do not want to
specifically use elemC
<xsl:apply-templates select="node()[ not( self::elemC[@id=('1')])]" />
Can I say:
<xsl:apply-templates select="node()[ not( self::elemA/*/*[@id=('1')])]" />
Thanks.
Lau
|

Cart



