HI,
I can only use the Monitor function when I am in play mode within the app.
The issue only occurs when the request goes in to edit mode from the deep link. In play mode and preview mode within the app and even when using the app from the weblink, works completely fine.
The only time the issue occurs is when I get the deeplink via email, it takes me to the edit screen, populates all of the information on the form except the checkboxes.
Here is the code for checkboxes
Onvisible of the form screen:
Clear(colRequiredForms);
If(
Form1.Mode <> FormMode.New,
Collect(
colRequiredForms,
Gallery1.Selected.'Attach Required Forms'
)
)
Gallery of checkbox, Items:
Choices([@'Vendor Setup'].'Attach Required Forms')
Datacard update and default:
colRequiredForms
Checkbox default:
If(IsBlank(LookUp(colRequiredForms, Value = Checkbox1.Text)),false,true)
Checkbox oncheck
Collect(colRequiredForms,ThisItem)
Checkbox on uncheck
Remove(colRequiredForms,ThisItem)
Checkbox Text:
ThisItem.Value