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: Calling templates with (defaulted) params



If I understand your question, Mario, the answer is a simple "yes".  Your
called template should look like this:

<xsl:template name="example" >
  <xsl:param name="parm1" select="'This is your default value'" />
  <!-- content of template here -->
</xsl:template>

Mike Kay's XSLT Reference gives an example under <xsl:param>.
The example is even titled "Example: Using <xsl:param> with a default
value".
The only difference is that his example has select="." instead of a
literal.
This was page 264 in the first edition.

But perhaps you were after something else, Mario?

Rick Suiter




 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]