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: apply-templates Q



<xsl:template match="/">

some testing...and tables...

<xsl:apply-templates select="data/Dates/Date" />
</xsl:template>

Try this instead.  If you have select="//Date" it means to apply-templates
to all Date elements that are descendents of the context node (the root node
in this case).  The above change insures that you will only be applying the
template to the Date element that you want.

	Good luck,
	Heather




 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]