This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: value of parent tag



On Wed, May 23 '01 at 10:46, Daniel Bauke wrote:
> and i need to know 'key' value of a parent tag in each
> particular <cc/>. on the example in 1st and 2nd <cc/> it's 
> "abc", in 3rd and 4th - "cde".
Have you tried:

<xsl:template match="cc">
 ...
 <xsl:value-of select="../@key" />
 ...
</xsl:template>

    Goetz.

PGP signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]