Consultor Eletrônico



Kbase P15619: data is not displayed in HTML TEXTAREA field with Webspeed D
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   29/01/2003
Status: Unverified

FACT(s) (Environment):

Webspeed 3.1x

SYMPTOM(s):

data is not displayed in HTML TEXTAREA field with Webspeed Detail object

CAUSE:

tabs or spaces in the TEXTAREA field introduced by editing HTML/4GL code with Procedure Editor

FIX:

Remove all the spaces and tabs from TEXTAREA content section.
See example:
<TEXTAREA NAME="`columnHTMLName('name_char')`"
`IF columnReadOnly('name_char') THEN ' DISABLED ' ELSE ''`
style="font-size: 8pt" >
`html-encode(columnStringValue('name_char'))`
</TEXTAREA>
As you can see the content is created by `html-encode(columnStringValue('name_char'))` line
It should not be any spaces or tabs at the begining of this line.