Answered
Script for creating an email in another textbox
Hi all,
I'm looking to create this situation in two separate textboxes:
Input - BoxA: "JOHN SMITH"
Output - BoxB: "JSMITH@EMAIL.COM"
is this possible?
Hi all,
I'm looking to create this situation in two separate textboxes:
Input - BoxA: "JOHN SMITH"
Output - BoxB: "JSMITH@EMAIL.COM"
is this possible?
Enter the following custom calculation script in BoxB:
event.value="";
var name=this.getField("BoxA").value;
if(name && name.split(" ").length>1)
{event.value=name.split("")[0]+name.split(" ")[1]+"@email.com"};
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.