Subject: Re: XSL-FO & Selecting Attributes
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 20 Apr 2005 17:16:26 +0100
|
suggetsing the following approach:
<xsl:template match="Item/*">
<fo:block>
<xsl:value-of select="@Sector"/>
</fo:block>
</xsl:template>
well that's what I wrote but not what I meant: I cut the wrong template.
You want most elements under Item to do this
<xsl:template match="Item/*">
<fo:block>
<xsl:value-of select="."/>
</fo:block>
</xsl:template>
<xsl:template match="Item/*">
No that would be an error, you can't have two templates with the same
match pattern. The one template above would replace all the templates you
had for Item/name, Item/description, etc.
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
________________________________________________________________________
|