I’ve narrowed the issue. The first was I had an ‘and’ on the email/password condition, should be an ‘or’.
The second is that bubble doesn’t recognise a field as not being valid until you start typing in it… e.g. as soon as I enter a character in the email the condition evaluates to true:
I’ll see what anyone else has to add, but maybe I need to reverse the logic so that the button is disabled by default, and then enabled if the condition is true.
step is 2 and (email is empty, or email is not valid, or password is empty, or password is not valid)
I saw a release coming with parentheses but doesn’t seem like it’s out… Any bubblers out there have a neater/more compact way achieving what I need? My form has about 7 steps, and some 3-4 fileds…
I’m reusing the same ‘back/continue’ button for each step (hence the step check)… this means I’ll need to create around 30-40 conditions on the button. Would be neat if I could get this to work in one expression somehow