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

How to make hidden Drop Lists functional in RBList Subforms?

Avatar

Level 2

I have created a form that contains 3 isolated Radio Button lists, each with hidden subforms that are unique per each button.

Two of my RBLists and subforms work perfectly, showing hidden Drop Down List options and other fields as they should when a button is selected.

However, RBList3 presents the Drop Down lists as user entry fields only. Each hidden subform in RBList3 contains one drop down menu and one text box for instructions.

I've used the same javascript to hide/show hidden fields when buttons are selected. All settings seem to match up. Here is a sample of my code:

if(RBList3.F.rawValue != 2) 
{
    this.presence = "hidden";
    newsubform.presence = "hidden";
}

else if(RBList3.F.rawValue == 2)
{
    this.presence = "visible";
    newsubform.presence = "hidden";
}

Does anyone have any suggestions for how to make my Drop Down Lists in RBList3 show as functional Drop lists?

I have attached the form for reference.

0 Replies