RE: [xsl] Matching values in the XML before output!

Subject: RE: [xsl] Matching values in the XML before output!
From: Jarno.Elovirta@xxxxxxxxx
Date: Thu, 18 Apr 2002 12:54:12 +0300
Heppa,

> Required output
> POINT NUMBER = 1 ISOLATION HISTORY OID = 29
> POINT NUMBER = 2 ISOLATION HISTORY OID = 15

  <xsl:for-each select="icc/icc-phases/icc-points">
    <fo:table-cell>
      <fo:block>
        <xsl:value-of select="point-number" />
      </fo:block> 
    </fo:table-cell>
    <fo:table-cell>
      <fo:block>
        <xsl:value-of select="../../../iso-point-details/isolation-history[icc-point-oid = current()/icc-point-oid]/icc-point-history-oid" />
      </fo:block> 
    </fo:table-cell>
  </xsl:for-each>  
 </fo:table>

Cheers,

Santtu

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread