This conversation has been locked due to inactivity. Please create a new post.
This conversation has been locked due to inactivity. Please create a new post.
I want the textfied ( full name ))
gather 2 textfields directly in other textfield
how can I do this ?
Solved! Go to Solution.
is this in xdp?
Views
Replies
Total Likes
yess YOU ARE THE MAN
THANK YOU SO MUCH![]()
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies