[xsl] reading ascendants except the first one (NEWBIE)

Subject: [xsl] reading ascendants except the first one (NEWBIE)
From: thomas <thomas.lohbeck@xxxxxx>
Date: Fri, 30 Aug 2002 12:12:18 +0200
Hello
I have the following xml:
-------------------------
.....more
<basisdaten>
	<titel>Basisdaten zur Planungsrechnung</titel>
	<kunde>
		<titel>Personendaten</titel>
		<vorname>Vorname</vorname>
		<name>Name</name>
		<adresse>Adresse</adresse>
		<plz>Platz</plz>
		<ort>Ort</ort>
	</kunde>
</basisdaten>
.....more
-------------------------

I like to read the ascendants from the <kunde> element EXCEPT the first one:<titel>
It should be done with XPath right? I dont habe a clue!
I use the following xsl to generate the pdf


-------------------------
.....more
<fo:table> <fo:table-column column-width="10cm"/> <fo:table-body> <xsl:for-each select="//basisdaten/kunde"> <xsl:for-each select="*"> <fo:table-row> <fo:table-cell> <fo:block> <xsl:value-of select="."/> </fo:block> </fo:table-cell> </fo:table-row> </xsl:for-each> </xsl:for-each> </fo:table-body> </fo:table>
....more
-------------------------


it generates:

+-------------+
|Personendaten|
+-------------+
|Vorname      |
+-------------+
|Name         |
+-------------+
|Adresse      |
+-------------+
|Platz        |
+-------------+
|Ort          |
+-------------+

it should be:
+-------------+
|Vorname      |
+-------------+
|Name         |
+-------------+
|Adresse      |
+-------------+
|Platz        |
+-------------+
|Ort          |
+-------------+

thank you a lot
thomas


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



Current Thread