xsl-list
[Top] [All Lists]

RE: Sum & Sort & Maxvalue

2004-03-06 14:17:53
-----Original Message-----
From: Andreas L. Delmelle

-----Original Message-----
From: Florian Mueller

I have a complex problem. I dont know if i can explain it correctly.

<snip /> 

I have been trying this with a sort on the hits-node, but it 
didn't seem to be working. 

Hi,

Had another look at it. Given the part of the solution I already provided:

<xsl:template match="day">
  ...
  <xsl:apply-templates select="ext:node-set($vacts)/*">
    <xsl:sort select="hits" data-type="number" order="descending" />
  </xsl:apply-templates>
</xsl:template>

<xsl:template match="activity[hits &gt; 0]">
  <xsl:value-of select="@name" />
  <b><xsl:value-of select="hits" /></b>
</xsl:template>


will get your output in the desired order.

Cheers,

Andreas


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>