Expand my Community achievements bar.

Hidden related questions that pop up if there is a related question being answered.

Avatar

Former Community Member

Senerio: I need to make a form where if I choose "yes" in a drop down then I want another option to pop up under it with another related question under it. Is it possible to do this in Livecycle 8? Please let me know.

1 Reply

Avatar

Level 10

You can place the second question and it's options wrapped inside a Subform and mark the Subform Presence as Hidden.

In the Exit event of the Dropdown you can check for the value and set the above Subform's presence property to Visible.

     if(DropDownList1.rawValue == "Yes"){

          Subform1.presence = "visible";

     }

     else{

        Subform1.presence = "hidden"; 

     }

Thanks

Srini