Re: [xsl] Empty text area issue

Subject: Re: [xsl] Empty text area issue
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 23 Apr 2004 11:47:23 +0100
  When this happens, the value-of returns nothing and the
  processor truncates <textarea></textarea> to <textarea /> on the way
  out.

It won't use this XML notation if you use the html output method, this
should be the default if your top level result element is html but you
can force it with

<xsl:output method="html"/>

If you are generating xhtml but trying to fool an html browser into
reading it, do something like
   <textarea>
        <xsl:value-of select="." />
<xsl:text> </xsl:text>
    </textarea>

which will make sure there is always at least a space there.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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