xsl-list
[Top] [All Lists]

Re: generic sorting problem

2005-09-06 12:56:09
Hi,

Tempore 21:21:50, die 09/06/2005 AD, hinc in 
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com scripsit peter willard donisthorpe 
<paytur(_at_)hotmail(_dot_)com>:

I need to sort the children of the root element by _their_ first child.

I suggest you try this for a starters:

<xsl:template match="/*">
        <xsl:copy>
                <xsl:copy-of select="@*"/>
                <xsl:for-each select="*">
                        <xsl:sort select="*[1]"/>
                        <xsl:copy-of select="."/>
                </xsl:for-each>
        </xsl:copy>
</xsl:template>

regards,
--
Joris Gillis (http://users.telenet.be/root-jg/me.html)
«Εν οίδα ότι ουδέν οίδα»  - Σωκρατης

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



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