Re-setting checkboxes

Is there a way to reset checkboxes without re-starting an app? I have an app with multiple screens and I would like the checkboxes to be empty if the user returns to the checkbox screen for a second or third time.
Thanks!

Hello,

Are set via the function checkbox(‘id’, checked) where the parameter checked is whether the function is initially checked. (Documentation for this function is available here.) It sounds like you may want create a new function (perhaps name it resetBoxes or something of that sort) which you call every time you return to that screen. Within resetBoxes you could call checkbox() on each id and resets the value to false.

Good luck!
Madeline