[Home] [By Thread] [By Date] [Recent Entries]
Charles Ohana wrote:
I need the following output. But I need it generic since I don't know how many element I'm going to have ...
Roughly:
<table border="1">
<xsl:for-each select="carrier[position() mod 3 = 1]">
<tr>
<xsl:for-each select=".|following-sibling::carrier[
position() < 3]">
<td>
<xsl:value-of select="."/>
</td>
</xsl:for-each>
</tr>
</xsl:for-each>
</table>
J.Pietschmann
|

Cart



