Hello, I am using a collection to generate a dataset.
ClearCollect(
colExample,
{
Section: true,
Environment: true,
Test: false,
Dev: false,
Prod: false
},
{
Section: true,
Environment: true,
Test: false,
Dev: false,
Prod: false
},
{
Section: true,
Environment: true,
Test: false,
Dev: false,
Prod: false
},
{
Section: true,
Environment: true,
Test: false,
Dev: false,
Prod: false
}
)
To visualize this dataset I use a vertical gallery with "check boxes".
gal_Example
chk_Section
chk_Environment
chk_Test
chk_Dev
chk_Prod
Now I have to questions:
- I want to change the values of the collection by clicking on the check boxes inside the gallery. I tried to use Patch() with no success.
- Outside the gallery I want to place a check box for each value (Section, Environment, Test, Dev, Prod). By clicking on this single checkbox, all values of the corresponding value in the collection should change to value of the check box. I tried to do it with UpdateIf() but had no success.
Can someone give me a hint how to solve this?
Thanks for your support.
Michael

Report
All responses (
Answers (