Kbase P25476: How to pass focus to a browse from a fillin.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  5/20/2003 |
|
Status: Unverified
GOAL:
How to pass focus to a browse row from a fillin.
FACT(s) (Environment):
Progress 9.x
FIX:
Define an ON GO trigger for the fillin, to pass focus to the browse before overriding its default behaviour. For example:
ON GO OF localcustnum
DO:
RUN applyEntry IN h_cust_brw (INPUT ?).
RETURN NO-APPLY.
END.