In my app, I have two checkboxes on the different screens.
I want that if i select/check the one checkbox , the other one should checked automatically & vice versa if i checked 2nd one then 1st one should be automatically selected.
I did , i applied on the Default of 1st checkbox: if(checkbox1.Value=true, true).
It is working. But vice versa is not working. I am unable to put the same condition on 2nd checkbox default property [if(checkbox2.Value=true,true)]. Its giving error that circular link is not possible.
Please give answer if anyone aware.
Use a variable as an intermediate step, that stops it from being circular.
So on your OnCheck for both of them, you set a variable that can be accessed by both
Set(gblCheckboxesChecked, true);
Then on the OnUnCheck for both of them you have:
Set(gblCheckboxesChecked, false);
Then make the Default value for both of them to be:
gblCheckboxesChecked
Now when you check/uncheck one, the other will mirror it and show the same 🙂
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2