Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.

Probably a very easy question

Avatar

Level 3

I am just starting with Livecycle and I am creating a form with an identification number and was wanting to know if you can create a numeric field that contains one number and when the user enters that one number into the first numeric field it automatically jumps to the next box for them to enter the next number?

1 Reply

Avatar

Former Community Member

You can use the exit event or the calculate event to populate other fields. Here is an example of the exit event.

// form1.page1.subform1.number1::exit - (JavaScript, client)


form1.page1.subform1.number2.rawValue = this.rawValue;

Steve