Subject: Re: problems with match
From: "Jochen Metzger" <j.metzger@xxxxxxxxxxxx>
Date: Thu, 25 Jul 2002 12:36:37 +0200
|
Hi Jarno,
> > It only works like this:
> >
> > <xsl:template name="title" match="/root/output">
> > <b>Auftrag #<xsl:value-of select="data/ordernr" /> (<xsl:value-of
> > select="data/shopname" />) </b>
> > </xsl:template>
> Isn't this identical to the one above?
Uups, yes, it should have read:
<xsl:template name="title" match="/root/output">
<b>Auftrag #<xsl:value-of select="/root/output/data/ordernr" />
(<xsl:value-of´select="/root/output/data/shopname" />) </b>
</xsl:template>
>Anyhow, calling a template does not change the current node, even if the
template being called has a match attribute.
That was the answer, I was looking for.....
THX
Jochen
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|