I'm creating a dynamic form and have actions that key off drop-down menu selections and disable/gray-out numerous check boxes further down the form based on the drop-down selection. The problem I'm running into is that if I then change said drop-down selection the same boxes remain disabled/grayed out after the condition has changed. Is there anyway to re-enable said check boxes when the drop-down selection changes without having to create boatload more actions?
Example:
Condition
When drop-down list DropDownList2Text SelectedChoice 46
or
When drop-down list DropDownList2Text SelectedChoice 47
Result
Set the state of Check Box 1 to disabled
Set the state of Check Box 2 to disabled
Set the state of Check Box 3 to disabled
Set the state of Check Box 4 to disabled
Set the background color of Check Box 1 to (40% Gray)
Set the background color of Check Box 1 to (40% Gray)
Set the background color of Check Box 1 to (40% Gray)
Set the background color of Check Box 1 to (40% Gray)
What I need to happen is the above Results undone if a user selects a different choice in DropDownList2 (which will have its own results). This form is going to have a ton of actions already, I'm just trying to avoid having to create a ton more to make the form function properly. I'm getting much better LiveCycle Designer (ES3), however, I still have a lot to learn, is there something I'm missing here?