Copy link to clipboard
Copied
Good Day,
I am looking to add the word "input" in a separate text box. Example, if I put Boss in the initial text box, the other text box would display "Boss Input".
My initial box is C.O.C. ROSTER.0
The other box is C.O.C. ROSTER 1ST
I thought I new what was was doing as always and um yeah didnt work out for me. Thank you for your help in advance.
Copy link to clipboard
Copied
As validation script of the first field, use this:
var f2 = this.getField("C.O.C. ROSTER 1ST");
f2.value = event.value == "" ? "" : event.value + " Input";
Copy link to clipboard
Copied
As validation script of the first field, use this:
var f2 = this.getField("C.O.C. ROSTER 1ST");
f2.value = event.value == "" ? "" : event.value + " Input";
Copy link to clipboard
Copied
Thank you so much.