Expand my Community achievements bar.

Matching Fields within the Form Designer

Avatar

Former Community Member
I want to create a brief outline of the page info and match certain fields that the user enters. Help.
4 Replies

Avatar

Former Community Member
Could you provide more information on what you are trying to accomplish? I'm not sure I understand.



Chris

Adobe Enterprise Developer Support

Avatar

Former Community Member
I have created a form where the user will enter a client name in a text field. I want to be able to insert what the user ENTERED in another text field - basically COPYING the contents of the text field.

Avatar

Former Community Member
Ok, so there are two ways to do this. Either set the names of both fields to be the same and set the binding on the fields to global.



Or you can use script to copy the value to the other field. For example, on the exit event of the field you that the user enters the name in you could put the JavaScript:



OtherField.rawValue = this.rawValue;



Chris

Adobe Enterprise Developer Support

Avatar

Former Community Member
The first one worked. Awesome. I'M SO HAPPY!!!!!