Disable/Enable individual checkboxes in a checkbox group

Can I disable an individual checkbox in a checkbox group?
This should disable the first checkbox but it doesn’t work: $w(“#checkboxGroup1”).options[0].disable();

However, this does disable the entire group of checkboxes:
$w(“#checkboxGroup1”).disable();

So, how would I do accomplish this?

I dont’ think you can disable a specific option in a checkboxGroup.
You can do one of the following:

  1. Use single checkboxes and disable whatever you want.
  2. Remove the disabled option from the checkboxGroup.
  3. If a forbidden option is selected, remove the selection.

I can make these work. Thanks for your help

You’re welcome :slight_smile:

Workaround: I solved it by covering each option of a checkboxgroup with a box. When the checkboxgroup option should be active I set the box to hidden.

Good workaround…