RE: [xsl] specific template?

Subject: RE: [xsl] specific template?
From: "Jim Fuller" <jim.fuller@xxxxxxxxxxxxxxxxxx>
Date: Thu, 3 Jul 2003 16:01:07 +0100
> Oh, thanks, but I found what I need:
> 
>            <xsl:apply-templates select="//formular">
>              <xsl:with-param name="name">login</xsl:with-param>
>            </xsl:apply-templates>


well u could use xpath to do the dirty work here

<xsl:variable name="someparam"/>
<xsl:apply-templates select="//formular[@name=$someparam]"/>


then the formular matching template will be used....u could also look into using modes on matching templates, if u want different behavior.

then u matching template is just ....
<xsl:template match="formular">
</xsl:template>

gl, jim fuller
This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient please contact the sender immediately. Any disclosure, copying, distribution or any other use of this communication is strictly prohibitedand may be unlawful. Stuart Lawrence Marketing Communications Limited reserves the right to monitor and intercept communications for unlawful business purposes.

This also confirms that this message has been swept for viruses, although Stuart Lawrence Marketing Communications Limited accepts no responsibility for any loss or damage resulting directly or indirectly from the use of this email or contents.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread