Kbase P11431: How to make an updateable browse go to the begining of the n
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  11/25/2003 |
|
Status: Unverified
GOAL:
How to make an updateable browse go to the begining of the next row instead of one cell down.
FACT(s) (Environment):
Progress/WebSpeed Versions
FIX:
Create the following trigger in the browse:
Trigger Syntax;
On Leave of <Browse column>
Do:
Apply "Tab" to Self. /*Or the equlivent button in your os*/
Return NO-APPLY.
END.