Subject: Re: Understanding difficulties with call-template
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 26 Oct 2000 00:47:17 GMT
|
> the xsl:if test doesn't work .... position==last for all nodes.
because you are working with a node list of length 1.
<xsl:for-each select=".">
. only selects one node, so position()=last()=1, always inside that
for-each.
> When I inline the above code instead of using call-template the
> xsl:if test works as expected.
you presumably took the test out of the for-each as well as
the template.
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|