How to hide one checkbox in a group
Hello there !
I am trying to do something which seems quite simple, but I can't manage to make it work.
I have two independant sets of checkboxes and when one of the checkbox in the first set is checked, it makes one of the checkbox in the second set visible.
Here is the script I have at the moment and which works, but hides all the second set of checkboxes :
var nHide = (event.target.value=="CB1")?display.visible:display.hidden;
this.getField("CB2").display = nHide;
I am looking for a way to hide only one of the checkboxes in the second set (and unfortunately, I can not use separate names for the second set of checkboxes).
Thank you for your help.
