Kbase P15672: How to stop the user from leaving a widget
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  25/11/2003 |
|
Status: Unverified
GOAL:
How to stop the user from leaving a widget
FACT(s) (Environment):
Progress/WebSpeed Versions
FIX:
Example if you didn't want a user to leave a fill-in unless the value was "X";
In the leave of the widget trigger.
DO:
IF self:screen-value NE "X" then
RETURN NO-APPLY.
END.