EDN Admin
Well-known member
Hi
Below is my problem.
1 . how to match the desecendant or self node but a leaf or terminal nodes in a single for each condition
I have to process the attributes based on choose condition
<xsl:for-each select="descendant or self node but not leaf node"/>
<xsl:choose>
<xsl:when test="descendant
--do processing--
</xsl:when>
<xsltherwise>
--get the value of the leaf node ---
</xsltherwise>
</xsl:choose>
View the full article
Below is my problem.
1 . how to match the desecendant or self node but a leaf or terminal nodes in a single for each condition
I have to process the attributes based on choose condition
<xsl:for-each select="descendant or self node but not leaf node"/>
<xsl:choose>
<xsl:when test="descendant
--do processing--
</xsl:when>
<xsltherwise>
--get the value of the leaf node ---
</xsltherwise>
</xsl:choose>
View the full article