Avatar

Level 10

You can use the Exit event of the dropdown and check for the rawValue..

I am using Java Script as the language in this example.

     switch(this.rawValue){

          case "A":

               Picture1.presence = "visible";

               Picture2.presence = "visible";

               Picture3.presence = "visible";

          case "B":

               Picture1.presence = "invisible";

               Picture2.presence = "invisible";

               Picture3.presence = "invisible";

     }

         

You need to make sure you have given the values to dropdown options.. Value for option "Client A" is set to "A" and similarly for "Client B" is set to "B".

Thanks

Srini