Re: [xsl] Can not convert #RTREEFRAG to a NodeList

Subject: Re: [xsl] Can not convert #RTREEFRAG to a NodeList
From: Antonio Fiol Bonnín <fiol@xxxxxxxxxx>
Date: Tue, 23 Jul 2002 08:25:14 +0200
Ming wrote:

Hi,

This is the part of my stylesheet:

<xsl:variable name='record'>
               <xsl:value-of select="document(fullKey)/xmldata"/>
</xsl:variable>

<xsl:if test="string-length($record) &gt; 0">
               <xsl:value-of select="$record/*/info/title"/>
</xsl:if>



Try

<xsl:variable name='record' select="document(fullKey)/xmldata" />

Then record will be a node set instead of a result tree fragment.

BTW what is fullKey? If a variable or param, you forgot the $.


Antonio Fiol



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



Current Thread