Kbase P10969: Editor and toggle box widget: the VALUE-CHANGED trigger is n
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  12/03/2003 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.x
SYMPTOM(s):
The VALUE-CHANGED trigger is not fired if a ANY-PRINTABLE trigger is fired before.
Editor widget.
Toggle box widget.
CAUSE:
Bug# 20021009-005
CAUSE:
The exact cause is unknown at the time of this writing.
FIX:
Write at the end of the ANY-PRINTABLE trigger the following code.
IF LOOKUP(SELF:TYPE,"EDITOR,TOGGLE-BOX") <> 0 THEN DO:
APPLY LASTKEY TO SELF.
APPLY "VALUE-CHANGED" TO SELF.
RETURN NO-APPLY.
END.