Re: [xsl] obtaining tree fragments from node-set value

Subject: Re: [xsl] obtaining tree fragments from node-set value
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 11 May 2005 11:59:50 +0100
> I just tried out your solution but <xsl:value-of select="@ref/> doesnt 
> return any value.


sorry ignore my last reply.

You made the mistake of doing what I said, not what I meant.

<xsl:when test="$x"/>
  ref: <xsl:value-of select="$x/@ref/> 
 text: <xsl:value-of select="$x"/>
</xsl:when>


or, if you are not doing anything in other branches of the xsl:choose
you don't need a variable or xsl:when at all and just do


<xsl:for-each
  select="MainClass/SubClass/Value[contains(.,'ParentValue')]">
  ref: <xsl:value-of select="@ref/> 
 text: <xsl:value-of select="."/>
</xsl:for-each>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread