Re: [xsl] xsl:variable inside xsl:for-each

Subject: Re: [xsl] xsl:variable inside xsl:for-each
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 11 Apr 2006 10:47:30 +0100
> I have an input xml file:
It's helpful if you post small but _complete_ input (that example is
missing a top level element) then people can test their answers.

> <td>Z</td>
> <td>7</td>

Do you mean 
<td>Z</td>
<td>0.1</td>
here (otherwise I have no idea where the 7 comes from).


Your requested output appears to just depend on the ec elements and not
at all on your t element, something like

<table>
<xsl:for-each select="ec">
  <tr>
   <td><xsl:value-of select="@X"/></td>
   <td><xsl:value-of select="@value"/></td>
  </tr>
</xsl:for-each>
</table>

It's not clear why you need any variables at all?

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