xsl-list
[Top] [All Lists]

Re: [xsl] Sorting Using A Predefined Order

2007-06-21 01:49:20

in addition to the more generic solutions Michael offered, it's not
clear to me what criterion your sort order is. If it's just a one-off
request and you really just need to process 5 elements in a custom
order there is always the simple but effective


<xsl:apply-templates select="div[2]"/>
<xsl:apply-templates select="div[3]"/>
<xsl:apply-templates select="div[5]"/>
<xsl:apply-templates select="div[1]"/>
<xsl:apply-templates select="div[4]"/>

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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