xsl-list
[Top] [All Lists]

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

2006-04-12 05:48:33
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(_at_)lists(_dot_)mulberrytech(_dot_)com
From: David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk>
Subject: Re: [xsl] xsl:variable inside xsl:for-each
Message-Id: 
<200604110947(_dot_)k3B9lUu8010418(_at_)edinburgh(_dot_)nag(_dot_)co(_dot_)uk>

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

--~------------------------------------------------------------------
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>