xsl-list
[Top] [All Lists]

Re: [xsl] Sorting seems not to work completely

2011-07-27 15:01:29
On 27 July 2011 20:49, Mark <mark(_at_)knihtisk(_dot_)org> wrote:
Thanks Andrew,
Your template one scrambles the <Date> order. Have not investigated why as
Murray's template worked almost perfectly. Thanks for the <Group...> idea.
It will make a nice debugging feature for me in the future.

oh ok... to do the dates-as-a-number technique like this:

  <xsl:for-each-group select="Item/Stamp"
group-by="Date/concat(@year, @month, @day)">
    <xsl:sort select="current-grouping-key()" data-type="number"/>

then they need to be 2 digits for month and day (yyyymmdd), eg
20110505 for the 5th day of the 5th month of 2011, instead of 201155.

It's probably more hassle converting the date to that than just
sticking with the triple sort that you already had.

-- 
Andrew Welch
http://andrewjwelch.com

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