Re: [xsl] Childnodes on separate lines

Subject: Re: [xsl] Childnodes on separate lines
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 8 Nov 2004 13:50:19 GMT
<fo:block padding-top="1mm">
  <xsl:value-of select="artnrs[*]"/>
</fo:block>

that takes the string value of the artnrs element, ie the concatenation
of the character data of all its descendants. In particular it throws
away the information that you had all those child elements.

You want an fo:block for each child so change the above lines to

<xsl:apply-templates select="*"/>

and have

<xsl:template match="artnrs/*">
<fo:block padding-top="1mm">
  <xsl:value-of select="."/>
</fo:block>
</xsl:template>



David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread