This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: setStylesheetParameter() question


>   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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]