Hello, I essentially created “Select All” buttons that check off a bunch of existing Checkboxes on my page. All of the Checkboxes are linked to a boolean field in a connected Dataset. However, when I use the coded button to “check” the boxes (as follows), the linked fields do not show “True” when I Submit to the dataset.
$w(‘#checkGDC’).checked = true ;
So basically, the checks show up in the boxes, but the appropriate “True” is not sent to the linked fields in the dataset. How can I make this work as intended?
Thanks for the help!