xsl-list
[Top] [All Lists]

Re: XSLT: question re testing for possibly empty elements

2004-08-17 01:46:49
Hi,

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

That's supposed to be:

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