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();