Skip to main content
Participant
June 1, 2018
解決済み

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.

  • June 1, 2018
  • 返信数 1.
  • 711 ビュー

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

このトピックへの返信は締め切られました。
解決に役立った回答 try67

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

返信数 1

try67
Community Expert
try67Community Expert解決!
Community Expert
June 1, 2018

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

Participant
June 1, 2018

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.

try67
Community Expert
Community Expert
June 1, 2018

It's JavaScript​, not Java...