Skip to main content
Participant
June 15, 2023
Answered

Auto-tab Checkbox

  • June 15, 2023
  • 1 reply
  • 521 views

Can someone please help me? I need my checkbox to be auto-tab after clicking the first checkbox; the cursor will automatically go to the following checkbox without pressing the Tab on the keyboard.

 

Thank you.

This topic has been closed for replies.
Correct answer try67

Are these check-boxes named the same? If so, that's not possible.

If not, you can use this code as the field's MouseUp event:

this.getField("Name of next field goes here").setFocus();

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
June 15, 2023

Are these check-boxes named the same? If so, that's not possible.

If not, you can use this code as the field's MouseUp event:

this.getField("Name of next field goes here").setFocus();

Eric Dumas
Community Expert
Community Expert
June 15, 2023

I am not sure if I understand your question correctly.

You might try to set the tab order manually. look at How to create fillable PDF, form creator, PDF form - Adobe Acrobat (acrobatusers.com)