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]

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

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