Consultor Eletrônico



Kbase P73297: HTMLSetFocus doesn't work in mapped web-objects.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   08/06/2004
Status: Unverified

FACT(s) (Environment):

Webspeed 3.1D

SYMPTOM(s):

HTMLSetFocus doesn't work in mapped web-objects.

columnHTMLName returns blank in mapped web-object.

FIX:

Add columnHTMLName in your mapped web-object. Do not call SUPER in your columnHTMLName.
Example:
FUNCTION columnHTMLName RETURNS CHARACTER
( pColumn AS CHARACTER ):
CASE pColumn:
WHEN "name" RETURN "h_name".
OTHERWISE RETURN "".
END.
END.