|
Subject: [xsl] Select each child node From: "Tim Watts" <timw@xxxxxxx> Date: Wed, 2 May 2001 10:06:18 +1000 |
How would I go about selecting each child node of an element to be printed?
If I had a XML
<root>
<stats>
<stat>
<element1>value<element1>
<element2>value<element2>
<element3>value<element3>
<element4>value<element4>
</stat>
<stat>
<element1>value<element1>
<element2>value<element2>
<element3>value<element3>
<element4>value<element4>
</stat>
</stats>
</root>
that the XSLT would print out each value of the nodes.
In pidgin XSLenglish it would be like...
<tr>
<xsl:apply-templates select="stat" />
</tr>
...
<xsl:template match="stat">
For each element, what-ever the element name
<td>
<xsl:value-of select="." />
</td>
Run through each element until done.
</xsl:template>
Thanks for your help with this xpath question... :)
Tim
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| AW: [xsl] How can I ask for a speci, Marcus Klinge | Thread | RE: [xsl] Select each child node, Tim Watts |
| Re: [xsl] Printing an XSL->HTML doc, Lyndall Scantlebury | Date | RE: [xsl] Select each child node, Tim Watts |
| Month |