Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hi Sanford, I wanted to check in to see if you were able to test the validation error. Thank you for your help!
I guess that makes sense for forms, but there are dozens of other use cases for a callback in case of a submit failure. Rate limits, server issues, weird validations on emails, etc. Is this something you've implemented before? Will the solution with FormsPlus module catch the 400 thrown from the mis...
hmm I think that still leaves me wondering why there isn't an onFail callback. Apart from form validations, this can range from rate limit errors to any unaccounted errors. Is the solution to just add the same validations as the server-side email check and hope that it doesn't occur with any future ...
return MktoForms2.whenReady((form) => {form.vals(this.formData);console.log(form.validate());if (!form.validate()) {return;}// submit form if it passes Marketo validationreturn form.submit();}); Hmm, is "native validation" the one done on Marketo servers? I'm using form.validate() and using the retu...
Hi Sanford, Longtime fan of your work here, and would like to chime-in on this issue as I am having a bit of an issue myself with this. I understand this post is older and I might be bringing it back from the dead, but I think it is relevant as this is the post that is closest to the issue I'm havin...