This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Simple Grouping


Hi all, I´m new in the xsl world and i have this problem:
I have an xml doc like that:
<list>
    <image>#</image>
    <image>#</image>
    <image>#</image>
    <image>#</image>
    ....
</list>
I need to create a table in which i want to group 3 images for each table
row, so the output looks like:
<table>
    <tr>
        <td>image</td>
        <td>image</td>
        <td>image</td>
    </tr>
    <tr>
        <td>image</td>
        <td>image</td>
        <td>image</td>
    </tr>
...
</table>

Thanks for your help!
ivan


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]