Answered
I have a field I'm naming TEXT1 which I want to populate with a concatenate of two values, GLOBAL_USER_FIRST_NAME and GLOBAL_USER_LAST_NAME. I am so new at this and stumbling around. If I name the Field "GLOBAL_USER_FIRST_NAME" it will populate with the User's first name, likewise for the last name. My goal is to have one field that will combine them both so it won't look so jacked up spacing-wise. I've tried using the Calculate/Custom calculation script section in the Text Field Properties and just keep striking out. I'm sure it's probably something simple, but I can't figure it out. Can anyone help me????
event.value = this.getField("GLOBAL_USER_FIRST_NAME").value + " " + this.getField("GLOBAL_USER_LAST_NAME").value ;
General note: it might also be worthwile for that form to look into the field names; in particular "Text1" or similar is not really developer-friendly…
Hope this can help.
Max Wyss.