xsl-list
[Top] [All Lists]

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

2006-04-11 02:49:06

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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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