Subject: Re: xsl:variable inside xsl:for-each
From: "a. benedict balbuena" <abcbalbuena@xxxxxxxxx>
Date: Wed, 12 Apr 2006 05:48:14 -0700
|
> Do you mean
> <td>Z</td>
> <td>0.1</td>
> here (otherwise I have no idea where the 7 comes from).
Yes it should be:
<td>0.1<td>
> It's not clear why you need any variables at all?
Tthe values within the <t> tags will be displayed. I need the
variables because changes to the values will be done only to the <ec>
tags.
Indulgences for an incomplete input file.
from a scorching hot phillipine summer day,
benedict
=====
Date: Tue, 11 Apr 2006 10:47:30 +0100
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
From: David Carlisle <davidc@xxxxxxxxx>
Subject: Re: xsl:variable inside xsl:for-each
Message-Id: <200604110947.k3B9lUu8010418@xxxxxxxxxxxxxxxxxxx>
> 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
|