Expand my Community achievements bar.

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";

}