How can i sort with xsl?
October 23rd, 2008 No Comments »
You can do sorting in xsl like this;
Also you can sort CKS EBE List’s like this:
This is sorting categories in a CKS:EBE List. I added a column to Sharepoint List: “Rank”, and sorted according to that.
<xsl:template match=”/”>
<ul>
<xsl:apply-templates select=”rows/row”>
<xsl:sort select=”Rank” order=”ascending”/>
</xsl:apply-templates>
</ul>
</xsl:template>
<xsl:template match=”row”>
<li>
<a href=”{ebe:createTagUrl(Title)}”>
<xsl:value-of select=”Title”/>
</a>
</li>
</xsl:template>