RE: [xsl] Question on loops

Subject: RE: [xsl] Question on loops
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Mon, 22 Mar 2004 19:00:02 -0000
# 
# My aim is to create a table after e.g. every second column.
# 

The key to this is

<xsl:for-each select="column[position() mod 2 = 1]"
  <table>
    ...
  </table>
</xsl:for-each>

I'll leave you to fill in the gaps.

Michael Kay

Current Thread