Re: [xsl] table column

Subject: Re: [xsl] table column
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 19 May 2003 17:43:39 +0100
> Given that my answer was incorrect as an approach, though, how would one  
> go about doing what was described in xsl 1?

I didn't originally give that as I didn't catch the start of the thread,
so wasn't sure quite what the problem was trying to solve but I see
Zarella has posted the solution already:

<xsl:template match="item">
<xsl:if test="position() mod 2 &gt; 0">
	<tr>
		<td>
				<xsl:apply-templates />
		</td>
		<td>
				<xsl:value-of select="following-sibling::item[1]" />
		</td>
	</tr>
</xsl:if>
</xsl:template>

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


Current Thread