This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Baffled by xsl:sort - want to process nodes in reverse document o rder.



Dylan Walsh asks about
<xsl:sort select="position()" data-type="number"
order="descending"/>
to process the selected elements in reverse order.

As a quick fix, try this:
<xsl:sort select="count(following-sibling::*)"
data-type="number"/>
Note that ascending is the correct order, since the
first sibling has the most followers. Adapt this as
necessary.
.................David Marston


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]