xsl-list
[Top] [All Lists]

Re: obtaining tree fragments from node-set value

2005-05-11 03:59:50


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
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--