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]
Other format: [Raw text]

Re: Can not convert #RTREEFRAG to a NodeList


Thanks a lot. It works. My fault.

The fullKey is a node value. <fullKey>12345555</fullKey>

Ming

Antonio Fiol Bonnín wrote:

> 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




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


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