Consultor Eletrônico



Kbase P124506: Browse column VIEW-AS TOGGLE-BOX does not respond to space key
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   3/10/2011
Status: Unverified

SYMPTOM(s):

Normal toggle-box widget can be toggled by pressing space bar while it has focus.


Browse column with view-as toggle-box cannot be toggled by pressing space bar

FACT(s) (Environment):

Windows
OpenEdge 10.1B

CAUSE:

Bug# OE00152953

FIX:

The following trigger replaces the wanted behavior:
DEF FIELD fld AS LOGICAL NO-UNDO.
ON ' ':U OF fld IN BROWSE brws
DO:
ASSIGN
fld:CHECKED IN BROWSE brws = NOT fld:CHECKED IN BROWSE brws.
RETURN.
END.