xsl-list
[Top] [All Lists]

Re: XSL Parent loop access?

2004-04-16 09:53:08


  <xsl:if test="text=item/text"> does not work

well it works but it doesn't test what you want it to test: it tests
the string value of the first text element child of the current node
with the string value of the first text element grandchild of the
current node, but there are no such grandchildren as your subitem
elements do not have item children. So this latter string value is "".

The path from a subitem node to its sibling text node is ../text not
item/text so you want

  <xsl:if test="text=../text">

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


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