Hi,
I have recently come accross a bug with the toggle control which I would like to report. I have been able to replicate this bug in a reletivly simple example.
1. Create a collection
Collect(Collection1,
{Name: "Anthony Phan", NightShift : false},
{Name: "John Smith", NightShift : false},
{Name: "Kevin Do", NightShift : true},
{Name: "Aaron Oxford", NightShift : false}
)2. Great a gallery with a label and and toggle.
3. Set the "Default" property of the toggle to the "NightShift" value
Default = ThisItem.NightShift
4. Set the OnCheck property asthe formula below to update the value within Collection1
OnCheck = Patch(Collection1,ThisItem, {NightShift: true})5.Set the OnCheck property asthe formula below to update the value within Collection1
OnUncheck = Patch(Collection1,ThisItem, {NightShift: false})Now if you click the toggle control it will behave as expected and change the NightShift value. However if you slide the toggle so that it is in the middle the control will start to toggle between On and Off as shown in the video. Furthermore if you toggle controls lower in the gallery the record will disappear as shown in the video.