RE: [xsl] Accessing parent node context

Subject: RE: [xsl] Accessing parent node context
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Tue, 27 Jun 2006 14:18:21 +0100
You have to assign variables in the outer for-each and then use the variable
further in.

<xsl:for-each ...
  <xsl:variable name="p" select="."/>
    <xsl:for-each>
      <xsl:..... select="abc[xyz=$p/p/q/r]"

Michael Kay
http://www.saxonica.com/

 

> -----Original Message-----
> From: Mohsen Saboorian [mailto:mohsens@xxxxxxxxx] 
> Sent: 27 June 2006 13:30
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] Accessing parent node context
> 
> Hi,
> Is there a way to access the context tree of the parent xslt elements.
> For example when you have two nested <xsl:for-each>s, is it 
> possible to access the path of the parent for-each when you 
> are inside of the child for-each?

Current Thread