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

RE: check for-each if a child exist and make loop for

Subject: RE: check for-each if a child exist and make loop for this too
From: "Bondarenko, Taras" <TBondarenko@xxxxxxxx>
Date: Sat, 26 Mar 2005 10:08:50 -0500
xsl for each child
You question is not clear as well as your XML or output format you seek.
If your XML is a list of <Jobdetail> nodes with children like
<secondnode>, <thirdnode> etc I.e.:

<root>
	<Jobdetails>
		<secondnode>
			<tag1>a</tag1>
		</secondnode>
		<thirdnode>
			<ta>4567</ta>
		</thirdnode>
	</Jobdetails>
	<Jobdetails>
		<secondnode>
			<tag1>a</tag1>
		</secondnode>
		<thirdnode>
			<ta>4567</ta>
		</thirdnode>
	</Jobdetails>
	...
</root>

Then it's trivial to use pull or push template (for-each or
apply-template) on <Jobdetails> node. i.e.:

	<xsl:for-each select="Jobdetails">
		<xsl:value-of select="name(child::*[1])"/>
	</xsl:for-each>

Or any of the XPaths: "following-sibling::*" or
"following-sibling::node()"

If <secondnode> is a sibling of the same root node as <Jobdetails> (they
are sister nodes) and you know they follow in that order then you can
use just "following" axis i.e. name(following::*)



-----Original Message-----
From: henry human [mailto:henry_human@xxxxxxxx]
Sent: Saturday, March 26, 2005 7:47 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject:  check for-each if a child exist and make loop for this
too

in a for-each loop
i know only the name of the first node(jobdetails)
the second node(secondnode) could exist or maybe not.
(it has second position of Jobdetails).
how could i get the name of secound
node and make a for-each loop for this
one?

xml
---
</Jobdetails">
<secondnode>
  <tag1>a</tag1>
<tag2>aa</tag2>
<tag3>aaaaa</tag3>
</secondnode>

<thirdnode>
 <ta>4567</ta>
<tb>67890</tb>
<tc>ddd</tc>
</thirdnode>




</Jobdetails>







___________________________________________________________
Gesendet von Yahoo! Mail - Jetzt mit 250MB Speicher kostenlos - Hier
anmelden: http://mail.yahoo.de

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.