xsl-list
[Top] [All Lists]

RE: sorting in <xsl:apply-templates>

2003-12-10 11:34:30
-----Original Message-----
From: Fred Wells

here's the snippets of my xsl that are problematic:

              <assemblePDF>
                      <xsl:apply-templates mode="assemble">
                              <xsl:sort data-type="number"
select="@seq"/>

's A bit difficult to guess the context, but I would definitely try

<xsl:apply-templates select="//chapter" mode="assemble">
<xsl:sort ... />

The problem in your snippet above would be that the 'nodelist' being sorted
actually only contains one node (chapters). After this has been sorted out,
the template for the individual chapter nodes will be applied (in document
order).


Cheers,

Andreas


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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