Copy link to clipboard
Copied
I have a PDF form where operators have to select a checkbox based on a desision. Then apply the signature next to the check box they have created. The application of the signature locks off fields further on in the form as required.
Is there any way I can make the apposing signature box unavailable based on the selection of the check box. For example, if 'FILL ON TOP' checkbox is selected, the signature field for 'NOT FILL ON TOP' becomes unavailable / locked?
Thanks 🙂
Copy link to clipboard
Copied
Try this as 'Mouse UP' action (Run a JavaScript) of checkbox:
this.getField("NOT FILL ON TOP").readonly = event.target.value == "Off" ? false : true;
Copy link to clipboard
Copied
Try this as 'Mouse UP' action (Run a JavaScript) of checkbox:
this.getField("NOT FILL ON TOP").readonly = event.target.value == "Off" ? false : true;
Copy link to clipboard
Copied
Worked a treat! Thank you so much!
Find more inspiration, events, and resources on the new Adobe Community
Explore Now