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

RE: row counting for html table creation

Subject: RE: row counting for html table creation
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Thu, 20 Dec 2001 14:24:00 -0000
table creation in html
> I have an xml document of accounts like this...
>
> <bank>
>    <account>
>      <first_name>....</first_name>
>      <last_name>.....</last_name>
>      <address>.....</address>
>      <zip>.....</zip>
>      <balance>....</balance>
>    </account>
>
> etc etc
> </bank>
>
> and need to view them in an html table. The question
> is
> how can I generate the correct number of rows of my
> table
> based on the <account> element as it is changing
> depending
> on when I take a view of it, and secondly how can I
> insert
> the values of name, address etc into the columns?

No real difficulty here, if I've understood your requirement correctly.

Assuming the structure is regular (i.e. every account has the same
children).

<xsl:template match="bank">
<table>
<tr><xsl:apply-templates select="account[1]/*" mode="heading"/></tr>
<xsl:apply-templates/>
</table>
</xsl:template>

<xsl:template match="account">
<tr><xsl:apply-templates/></tr>
</xsl:template>

<xsl:template match="account/*">
<td><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="account/*" mode="heading">
<th><xsl:value-of select="name()"/></th>
</xsl:template>

Mike Kay


 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.