Answered
Trying to add a Prefix and Suffix to a text Field
HI
I have text field in a form where a user enters a 6 digit code, after input I want the six digit code to have EA at the start and .OUT at the end, can this be done?
thanks
HI
I have text field in a form where a user enters a 6 digit code, after input I want the six digit code to have EA at the start and .OUT at the end, can this be done?
thanks
OK. In that case you can use this code as the field's custom Format script:
if (event.value) event.value = "EA" + event.value + ".OUT";
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.