How to make check boxes clear a signature block and mark it N/A
- December 9, 2020
- 2 respuestas
- 1511 visualizaciones
I am creating a form with Acrobat Pro DC and the form has five signature blocks. I am trying to get three of the signature blocks "Squadron Approval" "MALS Approval" and "MAW Approval" to clear and have N/A display the those spaces if the "Repair Level" check box "Depot Level" is selected.
I have attempted to add an action to the Depot Repair check box - Trigger: Mouse Up - Run a JavaScript
this.getField("Squadron Approval").value = "N/A";
this.getField("MALS Approval").value = "N/A";
this.getField("MAW Approval").value = "N/A";
I experimented and found this JavaScript will work to add text to a normal text box, but will not work on a signature block.
I am also trying to get the text "N/A" to clear if the check box is unclicked.
*Note I originally used Radio Buttons instead on check boxes, but switched to text boxes with the same field name and different export values so they could be unchecked.
