Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Repeating Tables, and Grey Sections

Avatar

Level 1

U gave Adobe Livecycle Designer ES4.

I am making a new form, and I am attempting to make an expandable table for our metrics. I added in the form but when I try to go to the binding tab it wont let me select the "Repeat Table" box. Is there a setting that I am missing?

Capture.JPG

My second question is, is there a way to "grey out" a section of a form? We are looking for a way to cover up a section of a form, where the user can select or deselect to see what is underneath that section. My other thought is if that was not possible, is there a way to make an invisible subform with a button to make it visible and invisible?

1 Reply

Avatar

Former Community Member

Hi Sara,

1) The first problem is because you did not set the Page content direction to "Flowed". Once the Page's Content property is set is flowed, your problem should be resolved.

2) You can always make a section visible or hidden by scripting. Use code :

               subform.presence = "visible";

                         or

               subform.presence = "hidden";

Thanks,

VJ