Re: [xsl] Sorting Using A Predefined Order

Subject: Re: [xsl] Sorting Using A Predefined Order
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 21 Jun 2007 09:48:59 +0100
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. 
________________________________________________________________________

Current Thread