Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list
SOLVED

show/hide subform by select radiobutton

Avatar

Level 5

Hi All.

I try to show and show/hide some subforms by click on radiobutton. By default all subforms are hidden. When I click radiobutton the according sunform is appears. But when I selected other radiobutton the other subform is appears also but first subform not disappear. My goal to display only one subform for according radiobutton. That is my code for radiobutton group in change event:

switch (this.rawValue) {

case "1":

subA.presence = "visible";

break;

case "2":

subS.presence = "visible";

break;

case "3":

subP.presence = "visible";

break;

case "4":

subC.presence = "visible";

break;

case "5":

subO.presence = "visible";

break;

case "6":

subW.presence = "visible";

break;

    default:  

subA.presence = "hidden";

subS.presence = "hidden";

subP.presence = "hidden";

subC.presence = "hidden";

subO.presence = "hidden";

subW.presence = "hidden";

    break;

}

To keep subforms hidden when form is open I use that code:

subA.presence = "hidden";

subS.presence = "hidden";

subP.presence = "hidden";

subC.presence = "hidden";

subO.presence = "hidden";

subW.presence = "hidden";

In form1.Page1::docReady - (JavaScript, client).

I would appreciate any corrections/suggestions!

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi

Try duplicating your docReady code before the case statement, the default branch is executed when no case branch is selected so in your case will be executed when the radiobutton value is not between 1 and 6

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi

Try duplicating your docReady code before the case statement, the default branch is executed when no case branch is selected so in your case will be executed when the radiobutton value is not between 1 and 6

Avatar

Level 5

Hi BR001. Thanks for replay.

Thanks for suggestion. Now CASE statement is working.