Reset multiple variables within an array UI component

I am using a pre-built component by WeWeb for a side bar. The important part is I can configure a dynamic array. How can I reset all values to it’s original value with an array?

I want to reset the checkbox values to false. I can do it with JavaScript but this just changes the values and not the UI.

Some screenshots:


image

If you want to change the checkbox value programmatically you need to create variables of type boolean that will store the value.
For example:

This is the result:
chrome_F8JljEAafq

@dorilama Thanks for this, have you tried this within a binded array though?

you just need to have an array or an object as variable to save the status of the checkboxes and bind/change the corresponding value in the variable.
It’s similar to other examples about inputs and forms that you can find here in the forum.

See this example.