Re: AW: [xsl] For loop

Subject: Re: AW: [xsl] For loop
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 12 Jul 2001 15:04:55 +0100
> I know, but I need to be able to accomplish this in order to split
> the data displayed into tables.

just select the elements in groups of 10
<xsl:for-each select="*[position mod 10 = 1]>
 start of each group
  <xsl:for-each select=".|following-sibling:*[position() &lt; 10]">
    group


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread