RE: how to access the element which is in the top in XSL.

Subject: RE: how to access the element which is in the top in XSL.
From: "Robert C. Lyons" <boblyons@xxxxxxxxxx>
Date: Wed, 20 Sep 2000 21:58:04 -0400
Babu wrote:
> 2.i have navigated upto <seven1>. If at this point i
> want to refer to the element "three".
>      for example.
> 
>       <xsl:template match="seven1"
>               <topvalue>
>                      <xsl:applytemplates
> select="three">  ????? what is the format to be
> applied.
>               </topvalue>
>       <xsl:template>

Assuming that <four> is a subelement of <three>
(i.e., <four> is under <three>), the following
should work:

       <xsl:template match="seven1">
               <topvalue>
                      <xsl:apply-templates select="../../../.." />
               </topvalue>
       <xsl:template>

Hope this helps.

Bob

<sig name    = 'Bob Lyons'
     title   = 'E-Commerce Consultant'
     company = 'Unidex, Inc.'
     phone   = '+1-732-975-9877'
     email   = 'boblyons@xxxxxxxxxx'
     url     = 'http://www.unidex.com/'
     product = 'XML Convert: transforms flat files to XML & vice versa' />


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


Current Thread