Re: [xsl] Selecting a Element by ID

Subject: Re: [xsl] Selecting a Element by ID
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 6 Feb 2004 14:24:20 GMT
  > 
  > <xsl:copy-of (or apply-templates, depending on what you want)
  >   select="/article/answer[@ref=current()/@id]"/>
  That works. I tried 
  /article/answer[@ref=self::node()/@id]
  and also
  /article/answer[@ref=@id]

  Both didn't work.

inside the [] the current bode is the answer element (that's why @ref
finds the ref attribute of answer) but that means that self::node() is
also the answer element so self::node()/@id and @id are both
syntactically correct but are comparing the ref attribute with an id
attribute on the same element the id attribute isn't there but that's OK
it will compare as "" as usual in xpath.
current() is the node current at the _start_ of the xpath so that gets
you back to the question node.


David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
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
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread