xsl-list
[Top] [All Lists]

Can't save a node tree in a variable.

2005-07-25 07:12:04
Can you please help me?I want to save the sorted tree in a variable.
Whats wrong with the following xsl:
<xsl:variable name="sorted">
                <xsl:apply-templates mode="copy" select="data/item"/>
        </xsl:variable>
        <xsl:template match="@*|node()">
                <xsl:copy>
                        <xsl:apply-templates select="@*|node()" mode="copy">
                                <xsl:sort select="@sector"/>
                                <xsl:sort select="@subsector"/>
                        </xsl:apply-templates>
                </xsl:copy>
        </xsl:template>

And then I want to perform smth. like this:$sorted/item/@sector.
How is it possible to realize such a thing?
---
GSM.By.COM - интернет-магазин сотовых телефонов стандарта GSM,
аксессуаров и запчастей к ним. Широкий выбор, разумные цены,
оперативная доставка. Ремонт телефонов. http://www.gsm.by.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>
--~--