Re: [xsl] <xsl:for-each> , only loop on half of the elements.

Subject: Re: [xsl] <xsl:for-each> , only loop on half of the elements.
From: Evgeny Gazdovsky <gazdovsky@xxxxxxxxx>
Date: Mon, 26 Jul 2010 19:11:52 +0400
<xsl:variable name="set" select="/content/collaborator"/>
<xsl:variable name="count" select=count($set)"/>
<xsl:for-each select="subsequence($set, 1, $count div 2)">
.......
</xsl:for-each>

Current Thread