• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Signature and Date fields

New Here ,
Oct 29, 2019 Oct 29, 2019

Copy link to clipboard

Copied

I'm looking for a way to connect two fields on a form.  I need the the date stamp of the signature field to also appear alone in a text box.  Thus, I need to connect a signature field to a text box, and format the text box so that only the date shows.  If anyone has a solution, please share.  I'm trying to do it, but I can't format the text box for it to just show the date.  This is for a time-sensitive project.  Would like to have a solution as soon as possible.  TIA

Views

282

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 29, 2019 Oct 29, 2019

Copy link to clipboard

Copied

I would use the option in the signature field's propertties to run a JavaScript to fill-in a read onlydate field with the systems current date and time zone when the PDF is signed.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 30, 2019 Oct 30, 2019

Copy link to clipboard

Copied

LATEST

As mentioned, you can use the Signed event of the Signature field to populate another field.

The code to do that would be something like this:

this.getField("SignatureTime").value = util.printd("mm/dd/yyyy HH:MM", new Date());

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines