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]

sorting problem



 hi i am trying to sort following xml :


<AAA>
	<BBB>1</BBB>
	<BBB>22</BBB>
	<BBB>11</BBB>
	<BBB>2222</BBB>
	<BBB>1111</BBB>
	<BBB>10</BBB>
	<BBB>444444</BBB>
</AAA>


in desecnding order using following  xsl:


<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="AAA">
      <xsl:apply-templates  select="BBB">
	        <xsl:sort data-type="number"  order="descending"
select="."/>
      </xsl:apply-templates>
  </xsl:template>
</xsl:stylesheet>


but everytime i am getting following output :

1 10 11 1111 22 2222 44344444

but acrually it should be :

1 10 11 22 1111 2222 44344444

i am not sure what the problem is ??


could somoene pls look into above xsl  piece and le t me know the problem ??


thanks
Anand

 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]