I am working in a rowview template, which basically iterates through all of the row items and displays them according to what i have set them at.
<table>
<tr>
<td>
<choose>
//different images for different when clauses
</choose>
</td>
</tr>
<tr>
<td>
<xsl:value-of select="@Title"/>
<td>
</tr>
</table>
The above layout is, in general, what I have.
Say you have a document library with documents:
Doc1
Doc2
Doc3
Doc4
I want these displayed as the following but do now know how to achieve this
<tr>
<td>doc1<td><td>doc2<td>
</tr>
<tr>
<td>doc3<td><td>doc4<td>
</tr>
I answered a similar issue here but for XSL, you need different syntax, though the concept is the same – try the following: