I am trying to update a bit column in a SQL db using a check box, it sits within a gallery and I have the following actions
OnCheck - Patch('[dbo].[Pending]'; ThisItem, {Verified: 1})
OnUncheck - Patch('[dbo].[Pending]'; ThisItem, {Verified: 0})
OnSelect - Select(Parent)
Default - If(ThisItem.Verified = 1 ,true,false)
The data is populated where it should be however I cant select or update the checkbox, its as if the DisplayMode is set to view however it is not - it is set to edit.
Thanks in advance