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

Re: Nesting xsl:call-template

Subject: Re: Nesting xsl:call-template
From: Winchel 'Todd' Vincent III <winchel@xxxxxxxxxxxxxx>
Date: Tue, 3 Apr 2007 12:12:18 -0400 (GMT-04:00)
Re:  Nesting xsl:call-template
David:

Thanks very much. This worked and makes perfect sense.

Regarding the second comment, I simplified this example.  I am doing some other evaluations inside the table cell (not just using text) and it is easier for me to read inside the element content rather than the Select attribute.  Performance is not an issue in this XSLT, but thank you for the tip; I will keep it in mind.

I do appreciate the quick response.  Very helpful.

Todd

-----Original Message-----
>From: David Carlisle <davidc@xxxxxxxxx>
>Sent: Apr 3, 2007 11:51 AM
>To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
>Cc: todd.vincent@xxxxxxxxxxxx
>Subject: Re:  Nesting xsl:call-template
>
>
>
>		<xsl:value-of select="$ValueRow"/>
>
>
>value-of gives teh string value of the selected node. You don't want teh
>string value (which loses all element information) you want a copy of
>the result tree fragment, so that's
>
>		<xsl:copy-of select="$ValueRow"/>
>
>incidentally it's a lot more efficient to go
>
>	<xsl:with-param name="Value" select="'This is some text.'"/>
>
>rather than
>
>	<xsl:with-param name="Value">This is some text.</xsl:if></xsl:with-param>
>
>one makes $Value a string, the other makes it a root tree fragment
>consisting of a root node with child a text node with string value the
>required string,
>
>David

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.