Re: [xsl] RE: Testing values from parent nodes

Subject: Re: [xsl] RE: Testing values from parent nodes
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Wed, 26 May 2004 10:50:41 +0100
Hi Neil,

> I tried :
>         <xsl:if
> test="ancestor::RR/RR_row/RR_group1/RR_group2[type=1]">
> 		But that doesn't work (crashes XMLSPY...)
> 	<xsl:if test="/RR/RR_row/RR_group1/RR_group2[type=1]">
> 		Same same...

Looks like you've found a bug in XML Spy. There's nothing wrong with
these paths. Though I think you might want:

 <xsl:if test="ancestor::RR_group2/type = 1">...</xsl:if>

instead.

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/

Current Thread