This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Accessing the Next Node in the Current Node List



> Does anyone have any ideas as to how to access/select the next node in the
> current node list?

you can't.

In your case, you can as you know the Xpath that selected your list so
you can use the same filter on the following sibling:

        Next Section Importance: <xsl:value-of
        select="following-sibling::section[@importance='high']/@importance"/>

(which of course is a strange way of getting the string 'high' but in
general you might want to something more interesting with the node. 

In more complicated cases it might be easier to first sort everything
and then use a node-set() extension function to walk over the sorted
list.

Or maybe you really are asking to find the next item with some shared
charactersistic in which case you can often view the problem as a
grouping problem and use keys a la Steve Muench.

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]