Well, I found a workaround for the workaround. I’m using the following code for the checkboxes. I hate the look of the disabled box, but it is only visible until they move on and click on another row, when the entire group of checkboxes reset. I can use this for now, but if anyone has a better idea, please let me know.
export function checkbox1_mouseIn(event, $w) {
//Add your code for this event here:
if ( $w(“#checkbox1”).enabled ) {
$w(“#checkbox1”).disable();
}
}