xsl-list
[Top] [All Lists]

Re: preceding-sibling question and node set as param to template

2002-12-11 07:35:17

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()[(_at_)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



<Prev in Thread] Current Thread [Next in Thread>