|
Subject: Re: [xsl] Using values from one node tree to iterate/recurse over another set of nodes. (Newbie Question) From: Martin Honnen <Martin.Honnen@xxxxxx> Date: Wed, 27 Feb 2008 18:09:04 +0100 |
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.
<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>Martin Honnen http://JavaScript.FAQTs.com/
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] Using values from one nod, Richard Dyce | Thread | Re: [xsl] Using values from one nod, Richard Dyce |
| Re: [xsl] Using values from one nod, Richard Dyce | Date | Re: [xsl] Complex recursion in XSLT, Dimitre Novatchev |
| Month |