xsl-list
[Top] [All Lists]

Re: how to convert from list to grid ?

2005-10-30 16:51:53

something like the following (untested)

<xsl:template match="list">
<xsl:variable name="items" select="item"/>
<table>
<xsl:for-each select="$items[postion()&lt;9]">
 <xsl:variable name="y" select="position()"/>
<tr>
<xsl:for-each select="$items[postion()&lt;9]">
 <xsl:variable name="x" select="position()"/>
 <td><xsl:variable name="c" select="count($items[(_at_)x=$x][@y=$y])"/>
     <xsl:choose>
       <xsl:when test="$c=0">& # 1 6 0 ;</xsl:when>
       <xsl:otherwise><xsl:value-of select="$c"/></xsl:when>
    </xsl:choose>
</td>
</xsl:fdor-each>
</tr>
</xsl:for-each>
</table>

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>