[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Ho do you format arbitrary data into tables?

Subject: Re: Ho do you format arbitrary data into tables?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 21 Jul 2003 17:19:36 +0100
xsl select arbitrary data
generating tables is a FFFFFFAQ, I'm sure the FAQ for this list will have
numerous examples (the archives certainly will)


> but I'm having troubles 
> coming up with a solution for inserting the row start and end tags.

Probably because you are thinking in terms of tags. XSLT can not
generate tags,

You want to start a row for every third element and that row has the
element and its two following children.

so

<xsl:for-each select="item[position() mod 3 = 1]">
<tr>
<td><xsl:value-of select="."/></td>
<td><xsl:value-of select="following-sibling::*[1]"/></td>
<td><xsl:value-of select="following-sibling::*[2]"/></td>
</tr>
</xsl:for-each>


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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.