Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
Is there space between the fields for form buttons?
Copy link to clipboard
Copied
Yes, buttons can be added if they will work
Copy link to clipboard
Copied
At a button use a script which exchange the values of the fields before and after the button.
Copy link to clipboard
Copied
Sorry, I didn't understand your idea
Copy link to clipboard
Copied
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;
Copy link to clipboard
Copied
"the users can rearange the statements according to their choice"
How do they do it?
(Checkboxes, menus…)
Copy link to clipboard
Copied
Hi, thanks for the idea... But it'll work?
Copy link to clipboard
Copied
It was a question, not a suggestion. Your description is very vague, making it difficult for us to help you...