[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Easy one! variables & documents)

Subject: Re: Easy one! variables & documents)
From: "Mike Haarman" <mhaarman@xxxxxxxxxxxxxxxxxx>
Date: Wed, 30 Apr 2003 16:45:41 -0500
Re:  Easy one!  variables & documents)
----- Original Message ----- 
From: "Karl J. Stubsjoen" <karl@xxxxxxxxxxxxx>

>
> <xsl:variable name="xmTmplt"><xsl:copy-of
> select="document('usr_member.xml')//FLDS"/></xsl:variable>
>

This creates an RTF (Result Tree Fragment) rather than a node-set.  If you
populate the variable like this:

<xsl:variable name="xmTmplt" select="document('usr_member.xml')//FLDS"/>

You will get a node-set in the variable.  Note also that //  is an expensive
production for a processor.  Point the select statement directly at the node
parenting your desired node-set.

> <xsl:template name="TEMP">
> <hr/>
>  <xsl:for-each select="xmTmplt/FLD">
>     <xsl:text>testing..</xsl:text>
>  </xsl:for-each>
> <hr/>
> </xsl:template>
>

<xsl:for-each select="$xmTmplt/FLD">

will then function properly.

hth,

Mike


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.