Subject: RE: order-by ... numbers
From: Brian Young <Brian.Young@xxxxxxx>
Date: Mon, 24 Jul 2000 14:21:29 -0400
|
Hello,
You could try:
<xsl:for-each select="parade/personaggio">
<xsl:sort select="@punteggio" data-type="number" order="ascending" />
...
</xsl:for-each>
Thanks,
Brian Young
-----Original Message-----
From: Claudio Lo Piccolo [mailto:lopi-out@xxxxxxxxxxxx]
Sent: Monday, July 24, 2000 1:34 PM
To: XSL-List@xxxxxxxxxxxxxxxx
Subject: order-by ... numbers
Hi, the xsl below:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
...
<xsl:for-each select="parade/personaggio" order-by="@punteggio">
...
</xsl:for-each>
...
</xsl:template>
</xsl:stylesheet>
seems to sort items alphabetically, instead of numerically, as desired (say 14 stays before 2)
here is the xml:
<parade>
<personaggio punteggio="14">
...
</personaggio>
<personaggio punteggio="2">
...
</personaggio>
...
</parade>
Can somebody help me, please?
Bye, lopi
___________________________________________________
Se vuoi un indirizzo di posta elettronica gratuito,
iscriviti a http://www.katamail.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|