xsl-list
[Top] [All Lists]

RE: template value input

2003-09-17 09:31:38
normally u would place the result of processing into an xsl:variable ala

<xsl:variable name="somevar">
some template processing
</xsl:variable>

then <xsl:with-param name="text" select="$somevar"/>

though if you want a nodeset, u must use nodeset() function 

otherwise in your case you could probably just do something simpler ( untested 
! )

<xsl:with-param name="text">
        result of some processing
</xsl:with-param>


gl, jim fuller

http://www.dpawson.co.uk/xsl/sect2/nono.html#d465e34

-----Original Message-----
From: clemens schrenk [mailto:clemens(_dot_)schrenk(_at_)gmx(_dot_)net]
Sent: 17 September 2003 17:17
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] template value input


how can i insert the outcome of a template into another template at the
place of the word space ?
<xsl:with-param name="text" select="space"/>


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


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



<Prev in Thread] Current Thread [Next in Thread>