Kbase P63792: How to set a TOGGLE-BOX to blank after procesing its 'VALUE-
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  1/21/2004 |
|
Status: Unverified
GOAL:
How to set a TOGGLE-BOX to blank after processing its 'VALUE-CHANGED' event?
FIX:
Add the statement:
SELF:CHECKED = FALSE.
at the end of the VALUE-CHANGED' event trigger. Example:
DO:
/* Processing logic of the value-changed event goes here */
SELF:CHECKED = FALSE.
END.