Subject: Re: How do I get the name of the current node
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 26 Oct 2000 16:35:22 GMT
|
<xsl:when test="./sprogit">
You never need to start such a test with ./ that is equivalent to
<xsl:when test="sprogit">
which is short for
<xsl:when test="child::sprogit">
which tests if the current node has a spogit child. You want to test if
the current node is a sprogit, which would be self::sprogit
however doing such an xsl:choose is rather a strange way to code things,
why not just apply-templates and then have separate templates matching
each of the possible children?
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|