xsl-list
[Top] [All Lists]

Re: [xsl] Comparing attributes and setting the values

2014-08-19 04:43:18
Am 19.08.2014 um 10:33 schrieb varun bhatnagar:

<xsl:template match="/">
        <A>
            <target>
                <xsl:apply-templates select="//Item"/>
                <xsl:apply-templates select="document('File2.xml')/*//Item"/>
            </target>
        </A>
    </xsl:template>
</xsl:stylesheet>

But it is not coming this way. It starts from 1 again for the second file. I 
want to be sequential.
What can I do for that?

Without even understanding what your code’s logic is trying to do this is what 
I would expect. I would not expect the preceding:: axis to automagically work 
across any number of sequential xsl:apply-templates.

It seems to me you must use a two-step approach by first joining all <Item> 
into a single root element. 

- Michael
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>