Selecting a Fill-in from another fill-in

bboymarko

New Member
Probably a simple one though can someone tell me how once the return key is pressed go to a previously tabbed field.

eg Fill-in1 - Return takes data in uses it tabs to fill-in2 --- all ok
but once fill-in2 - return trigger the data is taken in BUT it tabs back to fill-in1.
 

jongpau

Member
Probably a simple one though can someone tell me how once the return key is pressed go to a previously tabbed field.

eg Fill-in1 - Return takes data in uses it tabs to fill-in2 --- all ok
but once fill-in2 - return trigger the data is taken in BUT it tabs back to fill-in1.
Would something like this work?
ON RETURN OF fill-in2
OR GO OF fill-in-2 DO:
APPLY ENTRY TO FILL-IN1.
RETURN NO-APPLY.
END.

alternatively you could try to apply "back-tab to self", not too sure if that works.
 
Probably a simple one though can someone tell me how once the return key is pressed go to a previously tabbed field.

eg Fill-in1 - Return takes data in uses it tabs to fill-in2 --- all ok
but once fill-in2 - return trigger the data is taken in BUT it tabs back to fill-in1.

Use the ON LEAVE trigger for fillin2.
On Leave (of Fillin_2):
APPLY 'ENTRY' TO SELF.
END.

OR to narrow down further use the specific trigger, eg
ON 'TAB' OF fillin_2:
END.

Which event do you actually require? Just use the ON 'eventNameyouRequireBlock ' for the widgetName that you wish to apply to.
Regards
 
Top