|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: axis question
> When I use the following axis, I get elements from the
> parent axis all the way up to the root of the source document.
no nodes are in both the following axis and the parent (or ancestor)
axis.
What I _think_ you want is all nodes that follow the current one, but
that are also descendants of wrapper, which is an ancestor of the
current node.
select="following::*[ancestor::wrapper]
will work if there is only one wrapper ancestor that can play a part.
If you need to check that the following node has the same wrapper
ancestor as the current node then you need to try a bit harder,
select="following::*[ancestor::wrapper//*[
generate-id(.)=generate-id(current())]]"
probably works, although doesn't look very efficient.
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








