Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
3

A feature to Reorder the textfield statements in pdf form

Explorer ,
Sep 16, 2023 Sep 16, 2023

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

TOPICS
JavaScript , Modern Acrobat , PDF forms
1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 17, 2023 Sep 17, 2023

Is there space between the fields for form buttons?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Sep 17, 2023 Sep 17, 2023

Yes, buttons can be added if they will work 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 18, 2023 Sep 18, 2023

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Sep 18, 2023 Sep 18, 2023

Sorry, I didn't understand your idea 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 20, 2023 Sep 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;
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 18, 2023 Sep 18, 2023

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

How do they do it?

(Checkboxes, menus…)


Acrobate du PDF, InDesigner et Photoshoptographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Sep 18, 2023 Sep 18, 2023

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 20, 2023 Sep 20, 2023
LATEST

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines