This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: row counting for html table creation


Hello to you to, 

Is there any reason to why do you have to count it?
Do you want something else beside:

<table>
	<xsl:for-each select="account">
		<tr>
			<td><xsl:value-of select="first_name"/></td>
			...
		</tr>
	</xsl:for-each>
</table>

If so, tell us a bit more, and these other gurus will probably be able
to help you.. :-)

-----Original Message-----
From: ssd xcxc [mailto:marina777uk@yahoo.com]
Sent: 20. desember 2001 14:48
To: xsl-list@lists.mulberrytech.com
Subject: [xsl] row counting for html table creation


Hello,

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?

Regards

Marina

__________________________________________________
Do You Yahoo!?
Check out Yahoo! Shopping and Yahoo! Auctions for all of
your unique holiday gifts! Buy at http://shopping.yahoo.com
or bid at http://auctions.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]