Re: [xsl] Referencing a lookup table

Subject: Re: [xsl] Referencing a lookup table
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 12 Jul 2004 09:51:12 +0100
something like

<xsl:template match="document">
 <xsl:for-each select="policy/cover">
  <xsl:apply-templates
     select="."/>
  <xsl:apply-templates
    select="/document/funds/fund[code=current()/fundcode]/desc"/>
 </xsl:for-each>
</xsl:template>

together with templates for cover and desc that make whatever xhtml you
need.

If there are 1000's of funds you could make it more efficient with
xsl:key but get it working first keys can easily be added later.


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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