Hello Power Users,
I was building a canvas app with input data as Yes/No check boxes for multiple data cards with visibility rules. Will reset the next data cards if current check box is unchecked. Also, set the Yes/No check boxes in such a way that they toggle between them. Like if Yes is checked and clicked on No check box, that will uncheck Yes and check No, vice versa.
On App Start : Set(variable1,0). (1-Yes, 2-No and 0- not selected)
On each "Yes" check box property : OnCheck : Set(Variable1, 1)
OnUncheck: Set(Variable1,0);Set(Variable2,0)......... so on for all the next data cards
On each "No" check box property : OnCheck : Set(Variable1, 2)
OnUncheck: Set(Variable1,0);Set(Variable2,0)......... so on for all the next data cards
There are some conditions/operations set on uncheck of each check box. But in case of toggling that action is not performed. For example out of Yes/No check boxes, lets assume Yes is checked. When clicked on No it will select No check box and unchecks Yes check box. Here the Yes check box is not unchecked, just toggled between those 2 check boxes.
Would like to get those unchecked logics to run without unchecking them.
Hope I made clear on the issue that I'm looking for help.
Can anyone please help! Thank you so much in advance!