Subject: Re: setStylesheetParameter() question
From: Steve Tinney <stinney@xxxxxxxxxxxxx>
Date: Wed, 23 Feb 2000 12:46:09 -0500
|
> xsltProcessor.setStylesheetParam("testing", "'testing val'"); //note the
> single quotes
>
> <xsl:template match="/">
> <xsl:apply-templates>
> <xsl:with-param name="testing"/>
> </xsl:apply-templates>
> </xsl:template>
>
> <xsl:template match="someelement">
> <xsl:param name="testing"/>
> <xsl:value-of select="$testing"/>
> </xsl:template>
Looks to me like it might help to:
(a) declare a top-level xsl:param name="testing"
(b) remove the declaration of the param in someelement
(c) remove the xsl:with-param from the apply-templates
Steve
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|