Kbase P112168: END-RESIZE event trigger not firing on resize of BROWSE column.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  12/30/2005 |
|
Status: Unverified
SYMPTOM(s):
END-RESIZE event trigger not firing on resize of BROWSE column.
The trigger code:
ON 'END-RESIZE':U OF BROWSE-1 IN FRAME {&FRAME-NAME}
DO:
MESSAGE "Resized"
VIEW-AS ALERT-BOX INFO BUTTONS OK.
END.
CAUSE:
The ON statement is missing the ANYWHERE option.
FIX:
Add the ANYWHERE option:
ON 'END-RESIZE':U OF BROWSE-1 IN FRAME {&FRAME-NAME} ANYWHERE
DO:
MESSAGE "Resized"
VIEW-AS ALERT-BOX INFO BUTTONS OK.
END.