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

When I click a button that I have placed on a form, I want the text in a text field already on the form to change to the text in a variable that I have created.

New Here ,
Jun 01, 2018 Jun 01, 2018

Copy link to clipboard

Copied

When I click a button that I have placed on a form, I want the text in a text field already on the form to change to the text in a variable that I have created.

Specifically what I am trying to do:

//creates my variable

var date = new Date();

var components = [

    date.getYear(),

    date.getMonth(),

    date.getDate(),

    date.getHours(),

    date.getMinutes(),

    date.getSeconds(),

    //date.getMilliseconds()

];

var id = components.join("");

I then have a text field called "ID_Text"

I thought I could just use the following, but it does not work.

getField("ID_Text").value = id

TOPICS
Acrobat SDK and JavaScript , Windows

Views

452

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

correct answers 1 Correct answer

Community Expert , Jun 01, 2018 Jun 01, 2018

Works fine for me... What happens when you run the code? Are there any error messages in the JS Console?

Votes

Translate

Translate
Community Expert ,
Jun 01, 2018 Jun 01, 2018

Copy link to clipboard

Copied

Works fine for me... What happens when you run the code? Are there any error messages in the JS Console?

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
New Here ,
Jun 01, 2018 Jun 01, 2018

Copy link to clipboard

Copied

Yeah, I am not sure why it was not working yesterday...

I am new to java. I just tried it ten minutes ago and it worked. Not sure what I was doing wrong yesterday. Thank you for the response.

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 ,
Jun 01, 2018 Jun 01, 2018

Copy link to clipboard

Copied

LATEST

It's JavaScript​, not Java...

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