Re: [xsl] where's here the error

Subject: Re: [xsl] where's here the error
From: "graham.heath" <graham.heath@xxxxxxxxx>
Date: Mon, 02 Jan 2012 20:59:19 +0100
On 01/02/2012 11:17 AM, Matthieu Ricaud-Dussarget wrote:
<xsl:template match="section/entry">
<h2><value-of select="title" /></h2>
</xsl:template>
The problem with this generic solution is that if there is no title element (as this is the case for image/section/entry), you will get an empty h2 element.
You can add a test here or just deal with the first solution.


Use a predicate:

<xsl:template match="section/entry[boolean(title)]">
<h2><value-of select="title" /></h2>
</xsl:template>

0.02b,

Regards
Graham

Current Thread