Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
I am trying to concatenate two form fields values into one. In the rule editor, I tried to Concat a string with a field value. It didn't throw errors, but it just won't work.
guideBridge.resolveNode("from-hidden").value = Concat("ABC", this.value);
I don't find Concat under Functions from the side panel. Is that why it's not working? How do I make it work?
Solved! Go to Solution.
@yguo
Use the code editor instead and add the below js to any event:
var text1 = "ABC"; Field2.value = text1.concat(Field1.value);
Example: I added this js to the button click event and prefilled the next field.
View solution in original post
Views
Likes
Replies