Subject: order-by ... numbers
From: Claudio Lo Piccolo <lopi-out@xxxxxxxxxxxx>
Date: 24 Jul 2000 19:33:31 +0200
|
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
|