Expand my Community achievements bar.

ALL checkbox automatically checks all checkboxes in the column?

Avatar

Former Community Member

I'm using LiveCycle Designer to create a form that includes a column of checkbox selections. At the bottom is a checkbox for ALL. Is there any way to configure it so that when the user checks ALL, all the checkboxes in the column are automatically selected? Do I need to group the checkboxes together in the column? I can't find any information on this topic but maybe I'm looking in the wrong places. (I'm trying to learn this tool on my own.) Please advise, and thanks a lot.

1 Reply

Avatar

Level 6

Don't know how many check boxes you have but I just tested with four.  In the 4th checkbox I used this FormCalc on the click event:

if ($.rawValue==1)then

CheckBox1.rawValue="1"

CheckBox2.rawValue="1"

CheckBox3.rawValue="1"

else

CheckBox1.rawValue="0"

CheckBox2.rawValue="0"

CheckBox3.rawValue="0"

endif

By checking checkbox 4, all are checked.  If you uncheck, they all go blank