xsl-list
[Top] [All Lists]

Re: Referencing a lookup table

2004-07-12 01:51:12


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
________________________________________________________________________


<Prev in Thread] Current Thread [Next in Thread>