Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Drop Downs in Livecycle Designer

Avatar

Level 1

I need to make a dropdown that reads "Regular" but when selected I need it to say "RG".

Thank you in advance for you help.

1 Accepted Solution

Avatar

Correct answer by
Level 3

In the exit event of the drop down menu, write the following code

if(this.rawValue == "Regular")

{

     this.rawValue = "RG";

}

View solution in original post

2 Replies

Avatar

Correct answer by
Level 3

In the exit event of the drop down menu, write the following code

if(this.rawValue == "Regular")

{

     this.rawValue = "RG";

}