Re: [xsl] xsl:apply-templates with variable

Subject: Re: [xsl] xsl:apply-templates with variable
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 23 Sep 2004 21:55:02 +0100
> You mention "in this case is if matches the name of one of the elements
> (e.g., "CUSTOMER", "LAST_NAME", "DEPARTMENT")", however in my xml file

It sounds like you don't want to use a named template at all (which
can't be done dynanically) but just

<xsl:apply-templates select="*[name()=$ROOT]"/>

so if you pass in ROOT as "CUSTOMER" you will get the current behaviour.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread