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.