Copy link to clipboard
Copied
I'm wondering if this is possible. I have two text fields - Text1 and Text2. If text is entered into Text1, I would like Text2 to have an Alignment of Right. If no text is entered into Text1, I would like Text2 to have an Alignment of Left. Thanks for any help.
Copy link to clipboard
Copied
Place this script as a "Validation script" in Text1:
if (event.target.value === event.target.defaultValue) {this.getField("Text2").alignment = "left";}
else {this.getField("Text2").alignment = "right";}
Copy link to clipboard
Copied
Thank you!
Copy link to clipboard
Copied
Place this script as a "Validation script" in Text1:
if (event.target.value === event.target.defaultValue) {this.getField("Text2").alignment = "left";}
else {this.getField("Text2").alignment = "right";}
Copy link to clipboard
Copied
Thank you!