Skip to main content
Participating Frequently
September 16, 2023
Question

A feature to Reorder the textfield statements in pdf form

  • September 16, 2023
  • 3 replies
  • 1458 views

Hi, 

I have 21 textfields on a page of the PDF Fillable form, and i want to have some interactivity weithin the form so that the users can rearange the statements according to their choice as feel omportant in the pdf form. Please let me know if that's possible using Javascript if yes how?

How is that possible or suggest me a better way please?

 

Thanks

This topic has been closed for replies.

3 replies

JR Boulay
Community Expert
Community Expert
September 18, 2023

"the users can rearange the statements according to their choice"

How do they do it?

(Checkboxes, menus…)

Acrobate du PDF, InDesigner et Photoshopographe
Participating Frequently
September 18, 2023

Hi, thanks for the idea... But it'll work?

try67
Community Expert
Community Expert
September 20, 2023

It was a question, not a suggestion. Your description is very vague, making it difficult for us to help you...

Bernd Alheit
Community Expert
Community Expert
September 18, 2023

At a button use a script which exchange the values of the fields before and after the button.

Participating Frequently
September 18, 2023

Sorry, I didn't understand your idea 

Bernd Alheit
Community Expert
Community Expert
September 20, 2023

At a button you can use a script like this:

var text = this.getField("text1").value;
this.getField("text1").value = this.getField("text2").value;
this.getField("text2").value = text;
Bernd Alheit
Community Expert
Community Expert
September 17, 2023

Is there space between the fields for form buttons?

Participating Frequently
September 17, 2023

Yes, buttons can be added if they will work