I have an image list to be display. Standard template in SharePoint, each item will be looping using xsl:for-each and display in a table as single row like sample below
__________
| |
| image |
|__________|
__________
| |
| image |
|__________|
__________
| |
| image |
|__________|
__________
| |
| image |
|__________|
simple code for this :
<xsl:for-each select="$Rows">
<tr>
<td><xsl:value-of ......./> </td>
</tr>
</xsl:for-each>
what i need to do is to display 3 item in each row as sample below
__________ __________ __________
| | | | | |
| image | | image | | image |
|__________| |__________| |__________|
__________ __________ __________
| | | | | |
| image | | image | | image |
|__________| |__________| |__________|
How can I do this in xslt using looping.