Hi all!
I has 3 Checkboxes and 1 Label and I need to make it possible to choose only one Checkbox that updates the information in Label but The UpdateContex function does not give the desired result. With my formula, I can select all the Checkboxes at once. What is my mistake?
Checkbox1.Reset = ResetCheck1
Checkbox1.OnCheck
UpdateContext({ViewShpunt: "Info1"});;
UpdateContext({ResetCheck2: true});;
UpdateContext({ResetCheck3: true})
Checkbox1.OnUncheck
UpdateContext({ViewShpunt: ""});;
UpdateContext({ResetCheck1: false})
Checkbox2.Reset = ResetCheck2
Checkbox2.OnCheck
UpdateContext({ViewShpunt: "Info2"});;
UpdateContext({ResetCheck1: true});;
UpdateContext({ResetCheck3: true})
Checkbox2.OnUncheck
UpdateContext({ViewShpunt: ""});;
UpdateContext({ResetCheck2: false})
Checkbox3.Reset = ResetCheck3
Checkbox3.OnCheck
UpdateContext({ViewShpunt: "Info3"});;
UpdateContext({ResetCheck1: true});;
UpdateContext({ResetCheck2: true})
Checkbox3.OnUncheck
UpdateContext({ViewShpunt: ""});;
UpdateContext({ResetCheck3: false})