My pdf form contain editText fields and a verification checkbox. is there any way to detect changes in the editText fields ? (evry change will uncheck the checkbox).
Asked
Active
Viewed 419 times
1 Answers
0
You can add a JavaScript action for KeyPress field event for each field. When the action is executed you can reset the value of the checkbox field.

iPDFdev
- 5,229
- 2
- 17
- 18
-
this could difintly be a solution but i have many fields and my form will change from time to time. so im looking for a global solution – Adir.el Oct 28 '13 at 14:37
-
1You can define a document level JavaScript function that resets the checkbox and call this function from each field's KeyPress action. – iPDFdev Oct 29 '13 at 07:51
-
thanks, where can i define document level JavaScript function for my solution ? – Adir.el Oct 30 '13 at 08:23
-
In Adobe Acrobat go to View > Tools > JavaScript > Document JavaScripts – iPDFdev Oct 31 '13 at 12:18