So we have a very simple condition when validating the form submission. There should not be any items with 0 values but somehow some users were able to submit the form with invalid data.
We have tested on our side multiple times and have always been testing but we never encountered such a result.
Couldn’t be related to user device/browser/internet speed?
you’d be best to evaluate these conditions on the page as the fields change values then either make the button not clickable if any one of the conditions fails or use an alt workflow to alert the use on button click
some of the field types allow you to do this at the field level also and this automatically locks the button
ie make a field required and if empty then button isn’t clickable
or make a number field have min and max and the user can only enter numbers within that range
custom validation can be added on the page by holding the validation query in a group and then passing the results into the button or workflow
ie today I added custom validation in an app for ISRC codes using regex
That’s the thing. It required and has max value.I tried multiple times myself and it won’t let me proceed so I don’t get it how users were able to submit, unless there is smth off on bubble side.
I thought about custom validation and it seems like it’s time to bring it, can’t rely on conditions. Thanks for reminding!