I'm using Nintex Classic Forms2013
Very new and very lost...
I have two Calculated Values: Date_ & Time_
These values update on form load
I want these two values to concatenate into a single line text field, TimeDate
Please and thank you!
I'm using Nintex Classic Forms2013
Very new and very lost...
I have two Calculated Values: Date_ & Time_
These values update on form load
I want these two values to concatenate into a single line text field, TimeDate
Please and thank you!
Best answer by Garrett
Hi @kgiles
Form Controls
1. Calculated Value Name = Time_Date
2. Single Line Text Field Name = Destination
3. Assign the Client ID JavaScript variable name to both control. (Settings - Advance)
txtTime_Date
txtDestination
4. Place the following code into the Form Settings - Custom JavaScript

NWF.FormFiller.Events.RegisterAfterReady(function() {
var x = NWF$("#" + txtTime_Date).val();
var y = NWF$("#" + txtDestination);
y.val(x);
});
This will assign the value of Time_Date to Destination eg pass Time_Date value to Destination.
as you stated - "Time_Date to set it's value to Destination."
Form Design

Form Output

hope that helps
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.