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]
Other format: [Raw text]

Re: Filling gaps in a list of values



>Otherwise you might have to search through them to find the ones with
>the highest and lowest values; there are various methods listed in the
>FAQ at http://www.dpawson.co.uk/xsl/sect2/N5121.html.
>

Is it possible to use for-each and sort to output the nodes into a variable?

ie

<xsl:variable name="sorted">
	<xsl:for-each select="//topmenu/menus[@level]">
		<xsl:sort select="@level" order="descending"/>
	<xsl:copy-of select="current()"/>
			</xsl:for-each>
		</xsl:variable>

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.


 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]