<xsl:apply-templates 
  select="$tempPosterItemNodeSet/CurrentPosterItemCollection/PosterItem" 
  mode="PosterItem">
    <xsl:sort 
      select="$tempPosterItemNodeSet/CurrentPosterItemCollection/PosterItem/Property[@name='WidgetID']" 
      data-type="number"/>
</xsl:apply-templates>
I need to xslt sort a nodeset that I am passing to a template in the sample I have put above.
Can anybody let me know How I can sort the above xsl logic ??