Hi,
I just made a multi-step form according to this tutorial: How to design a Multi-Step form with Nintex Forms for Office 365
Now I have a question: Is there a possibility to skip pages if a checkbox is active or not? I only want to show page 2 if the checkbox is active and skip to page 3 if it's not.
I tried to add an if condition to the button:
'if(Checkbox==true) {goStep(2)} else {goStep(3)}'
but it always goes directly to 3. Never to 2.
I also made a button with 'alert(Checkbox)' which always returns 'false'. I'm really not good with JavaScript so maybe this is a very stupid error but to me it seems that the checkbox doesn't affect the result at all.