Skip to main content
Tommy_Wittig
Participant
April 23, 2020
Question

Creating a Checkbox that Auto-Checks

  • April 23, 2020
  • 1 reply
  • 287 views

Hello! I hope this finds you all well. I am looking for some information on whether or not a Checkbox can be Auto-Checked. Simply put, I have a client that has a form with a Required Signature field. Next to the Signature field they want a Checkbox titled "Electronically Signed". Their hope is that when the Signature field is signed it will cause the Checkbox to Auto Populate (Auto Check). Is this possible? Any information that can be provided is GREATLY appreciated!! Thank you so much!!

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
April 23, 2020

Yes. Under the properties of the signature field go to the Signed tab and have it execute the following JavaScript code:

this.getField("Checkbox1").checkThisBox(0, true);

Replace "Checkbox1" with the actual field name, of course...