Expand my Community achievements bar.

Text Field to Populate Other Text Fields

Avatar

Level 2
This may be extremely simple, but I'm not having any luck. I am using LiveCycle Designer 8 and I am trying to set two text fields equal. They are in separate subforms. I would like for whatever the user enters into (SF1.textField1) to automatically show up in (SF2.textField2). Also, what type of event should I use? Any help would be greatly appreciated.



Thanks!
2 Replies

Avatar

Level 5
Use following JavaScript code in 'exit' event of textField1.



SF2.textField2.rawValue = this.rawValue;



Good luck,

SekharN

Avatar

Level 2
This worked great...thanks for everything.