xsl-list
[Top] [All Lists]

Re: [xsl] Using values from one node tree to iterate/recurse over another set of nodes. (Newbie Question)

2008-02-27 10:09:45
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.

--

        Martin Honnen
        http://JavaScript.FAQTs.com/

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