I have several checkboxes (let's say 10) in a form as well as an unbound field which will be used to calculate how many of the checkboxes are checked. So, if 3 of the 10 boxes are checked, I want the unbound field to display "3"... if one is unchecked, it should go down to "2" etc. etc.
How can this be done? I thought about adding an onClick event to each checkbox that would increase the field by 1 (else, decrease by 1)... but I can't figure out how to do it. Thanks!
How can this be done? I thought about adding an onClick event to each checkbox that would increase the field by 1 (else, decrease by 1)... but I can't figure out how to do it. Thanks!