Re: [xsl] XSLT: question re testing for possibly empty elements

Subject: Re: [xsl] XSLT: question re testing for possibly empty elements
From: Ralph Holz <ralph.holz@xxxxxxxxxxxxxxxxxxxx>
Date: Tue, 17 Aug 2004 10:46:49 +0200
Hi,

<xsl:when test="anElement">
...
<xsl:otherwise>
...

That's supposed to be:


<xsl:when test="normalize-space(anElement)">

Current Thread