xsl-list
[Top] [All Lists]

Re: passing parameters between templates

2002-10-19 22:21:34
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



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