Subject: Re: Formatting in an HTML table...DOWNwise!
From: Patrick van Halderen <patrick@xxxxxxxxxxxxx>
Date: Wed, 02 Jul 2003 18:19:42 +0200
|
David,
It works like a charm! Thanks!
Greetings,
Patrick
> From: David Carlisle <davidc@xxxxxxxxx>
> Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Date: Wed, 2 Jul 2003 16:48:26 +0100
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Re: Formatting in an HTML table...DOWNwise!
>
>
> you first ned to know how many entries you have
>
> <xsl:variable name="x" select="count(model)"/>
>
> then you need to decide how many columns you have (say three)
>
>
> <xsl:variable name="rows" select="ceiling($x div 3)"/>
>
> Now you want a table
>
> <table>
>
> each row correspond's to the entries up to the number of rows
>
> <xsl:for-each select="model[position()<$rows]">
> <tr>
> in this row you want
> <td><xsl:value-of select="."/></td>
> <td><xsl:value-of select="following-sibling::model[$rows]"/></td>
> <td><xsl:value-of select="following-sibling::model[2 * $rows]"/></td>
> </tr>
> </xsl:for-each>
>
> </table>
>
>
> (untested)
>
> David
>
> ________________________________________________________________________
> This e-mail has been scanned for all viruses by Star Internet. The
> service is powered by MessageLabs. For more information on a proactive
> anti-virus service working around the clock, around the globe, visit:
> http://www.star.net.uk
> ________________________________________________________________________
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|