Hi,
I am hoping to use a checkbox within a gallery, so that each item in that gallery can be ticked off.
I set the OnCheck property as
Patch(Shifts, ThisItem, {'Updated': true})
and the OnUncheck as
Patch(Shifts, ThisItem, {'Updated': false})
Then i set the default to
If(ThisItem.'Updated' = "true", true, false)
It makes the change to the source data - i can see it has put true next to this record. But the checkbox immediately becomes unticked, so the checkboxes are always blank.
How can i make it so that the check boxes state is saved?