| Subject: Fwd: [xsl] Aberrant Alphabetizing. From: Wendy McFarland <wmcfarla@xxxxxxx> Date: Fri, 7 Mar 2003 14:00:10 +0100 | 
What I think you should be doing is sorting the <book> child nodes of whatever
parent they have by title, something like:
<xsl:template match="insert-parent-of-book-here"> <xsl:apply-templates select="book"> <xsl:sort select="title"/> </xsl:apply-templates> </xsl:template>
Think of it as building a list of nodes to process using <xsl:apply-templates
select="..."/>, and then sorting them using <xsl:sort/>
| Current Thread | 
|---|
| 
 | 
| <- Previous | Index | Next -> | 
|---|---|---|
| RE: [xsl] Aberrant Alphabetizing., Andrew Welch | Thread | Re: : [xsl] Aberrant Alphabetizing., Jeni Tennison | 
| RE: [xsl] Aberrant Alphabetizing., Andrew Welch | Date | Re: : [xsl] Aberrant Alphabetizing., Jeni Tennison | 
| Month |