RE: [xsl] Chunking large CALS table in mulitple smaller tables

Subject: RE: [xsl] Chunking large CALS table in mulitple smaller tables
From: "Kevin Bird" <kevin.bird@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 26 Jun 2008 12:18:20 +0100
David

Thanks for the help.

When I changed your code below  ...

<xsl:for-each select="entry[position()=1 or
(position()&gt;=$start)][position()&lt;=10]">


to this

<xsl:copy-of select="entry[1]"/>
<xsl:for-each select="entry[position()&gt;=$start][position()&lt;=10]">

I got the desired result, but I do not understand why your original code
failed.

--
Kevin

Current Thread