Subject: Re: passing parameters between templates
From: Mike Brown <mike@xxxxxxxx>
Date: Sat, 19 Oct 2002 23:21:34 -0600 (MDT)
|
Peter Lavender wrote:
> Hi everyone,
>
> Can I send more than one parameter to a template like so:
> <xsl:call-template name="choicesGeneral">
> <xsl:with-param name="appIn" select="$app" />
> <xsl:with-param name="teach" select="yes" />
> <xsl:with-param name="type" select="general"/>
> </xsl:call-template>
Yes, but...
select="yes" means select="child::yes" and gives you a node-set.
I think you mean select="'yes'" which gives you a string.
- Mike
____________________________________________________________________________
mike j. brown | xml/xslt: http://skew.org/xml/
denver/boulder, colorado, usa | resume: http://skew.org/~mike/resume/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|