[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[Recent Entries]
[Reply To This Message]
Re: Using values from one node tree to iterate/recurse
Subject: Re: Using values from one node tree to iterate/recurse over another set of nodes. (Newbie Question)
From: Richard Dyce <subscriptions@xxxxxxxx>
Date: Thu, 28 Feb 2008 08:42:55 +0000
|
Bingo! That's exactly what I wanted.
Martin, you are a gentleman and a scholar sir!
;-)
On 27 Feb 2008, at 17:09, Martin Honnen wrote:
Richard Dyce wrote:
A <record> element may have more child data elements than the
<structure> has <field> children. I would like the ordering of the
<field> elements to be reflected in the table, rather than rely
current symmetry.
I think if you change the template for 'record' elements to the
following
<xsl:template match="record">
<xsl:variable name="this" select="."/>
<tr>
<xsl:for-each select="../structure/field/@name">
<xsl:apply-templates select="$this/*[local-name() =
current()]"/>
</xsl:for-each>
</tr>
</xsl:template>
then the stylesheet I posted does what you want.
--
Richard Dyce MA (Cantab.) MBCS MIET
|
PURCHASE STYLUS STUDIO ONLINE TODAY!
Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!
Download The World's Best XML IDE!
Accelerate XML development with our award-winning XML IDE - Download a free trial today!
Subscribe in XML format
RSS 2.0 |
|
Atom 0.3 |
|
|