Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.

eDropdown with multiple options that leads to two different signature fields

Avatar

Level 2

Hello,

I hvae 1 dropdown that has two options A and B, when selecting A, signature A should appear, when selecting B, signature B should be appear.

Right now this is the closest I can get:

if (this.rawValue=="A")

SIGA.presence="visible";

else

SIGA.presence="invisible";

I dont know how to add the && command to the script. In order to make Signature appear when selecting option B.

Can someone please help.

Kr,

Nancy

1 Reply

Avatar

Level 10

Hi,

you can use the switch() method in the dropdown fields change event.


switch (xfa.event.change) {


  case "A" : SIGA.presence = "visible"; SIGB.presence = "hidden"; break;


  case "B" : SIGA.presence = "hidden"; SIGB.presence = "visible"; break;


  default : SIGA.presence = "hidden"; SIGB.presence = "hidden";


}