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: Scope of a variable


Look in the spec for xsl:param and xsl:with-param: they allow you to pass
parameters from the calling template to the called template. See below.
Alternatively, in this case the value is in the source document, so you can
access it from the match="FIRST" template using select="../@num".

Mike Kay

> > 
> > <xsl:template match="MAINTAG">
 > 	<xsl:apply-template select="FIRST">
		<xsl:with-param name="num" select="@num"/>
      </xsl:apply-templates>
> > </xsl:template>
> > 
> > <xsl:template match="FIRST">
	<xsl:param name="num"/>
> > 	<INPUT TYPE="HIDDEN" NAME="hidNum">
> > 	<xsl:attribute name="VALUE">
> > 	<xsl:value-of select="$num"/>
> > 	</xsl:attribute>
> > 	<xsl:apply-templates/>
> > <xsl:template>
> > 


 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]