xsl-list
[Top] [All Lists]

RE: [xsl] Accessing parent node context

2006-06-27 06:18:36
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(_at_)gmail(_dot_)com] 
Sent: 27 June 2006 13:30
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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?

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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