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


Woops - you're right.  I kinda misunderstood the structure of things - an
xsl:param is not a template parameter, it's a stylesheet paramater.  :)

Thanks,

Brian

> -----Original Message-----
> From: Steve Tinney [mailto:stinney@sas.upenn.edu]
> Sent: Wednesday, February 23, 2000 10:46 AM
> To: xsl-list@mulberrytech.com
> Subject: 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
> 


 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]