xsl-list
[Top] [All Lists]

Re: [xsl] for-each for reading 2 documents

2008-09-09 13:12:22
Mohit Anchlia wrote:
Is it possible to use <xsl:for-each ..> to read 2 documents. Something
like <xsl:for-each select="//abc/*|$file2//abc/*">. I tried this but
it doesn't seem to work.

You can form the union of nodes from different documents so the above should work, assuming you have e.g.
  <xsl:variable name="file2" select="document('file2.xml')"/>
in scope.

--

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