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.

DDList question

Avatar

Level 7

Hi all,

I have a DDList with two items: YES, NO

Is it posible when user select YES the color to change to Green and

when user select NO the color to change to Red

Caption remains Black for both cases

Thank you

1 Reply

Avatar

Level 4

Hi,

You can write the java script in the "exit" event of the DDL as follows

if (this.rawValue == "YES")

               {

                              this.font.fill.color.value = "0,128,0";

          }

if (this.rawValue == "NO")

               {

                              this.font.fill.color.value = "255,0,0";

               }


Thanks,

Dev