Expand my Community achievements bar.

Make Enter key act like Tab Key

Avatar

Former Community Member
Is there any way to make pressing the Enter key change the focus to the next field in the tab order? In other words, make the Enter and Tab keys act the same way?



Thanks!



Nelson
1 Reply

Avatar

Level 5
Hitting [Enter] key triggers "exit" event, so add the following code appropriately xfa.host.setFocus(TabTo); where 'TabTo' is the field name to set the focus. However you do need to match with the tabbing order in the form just to make sure [Enter] and [Tab] keys function similarly.



SekharN