Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

gathering 2 textfields

Avatar

Level 3

I want the textfied ( full name ))

gather 2 textfields directly  in other textfield

how can I do this ?

Untitled.jpg

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Download the sample from here:

Adobe Document Cloud

Thanks,

Mayank

View solution in original post

4 Replies

Avatar

Correct answer by
Employee Advisor

Download the sample from here:

Adobe Document Cloud

Thanks,

Mayank

Avatar

Level 3

yess      YOU ARE THE MAN

THANK YOU SO MUCH

Avatar

Level 1

Concatenate is what will bring your two fields together. Using Javascript on the "Calculate" event of the fullnamefield use the following code:

if (firstnamefield.rawValue != null && lastnamefield.rawValue != null) {
this.rawValue = firstnamefield.rawValue + " " + lastnamefield.rawValue;
}


This code above is a Javascript IF statement that will only run IF your first name field AND lastnamefield rawvalues are not equal to null. If an object/text field has no text/numbers in it, it is considered to be Null or Zero or Nothing.