Skip to main content
Known Participant
March 14, 2018
解決済み

JavaScript to auto populate text field value

  • March 14, 2018
  • 返信数 2.
  • 866 ビュー

hi, i need javascript to manage my bellow issue. can u pls help me.. thanks in advance.

"aa" field is empty, "bb" field also empty

"aa" field have some value then "bb" field value = "cc" field value

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

Enter this code as the custom calculation script of "bb":

event.value = (this.getField("aa").valueAsString=="") ? "" : this.getField("cc").valueAsString;

返信数 2

try67
Community Expert
try67Community Expert解決!
Community Expert
March 14, 2018

Enter this code as the custom calculation script of "bb":

event.value = (this.getField("aa").valueAsString=="") ? "" : this.getField("cc").valueAsString;

omanbux作成者
Known Participant
March 14, 2018

always amazing support form try67. thanks a lot..