Subject: Re: preceding-sibling question and node set as param to template
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 11 Dec 2002 14:35:17 GMT
|
Note that you said
> Get first preceding-sibling of current node that has the ss:Index attrib
^^^^^^^^^
not
Get first preceding-sibling of of the ss:Index attrib of the current node that has the
^^^^
Th Xpath spelling of "that has" is "[ ]"
so not
preceding-sibling::node()/@ss:Index/preceding-sibling::node()
which counts all the preceding-sblings of the ss:Index attribute, but
attributes don't have siblings.
you want
preceding-sibling::node()[@ss:Index][1]/preceding-sibling::node()
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|