You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the submit button is not preserved because this package calls event.preventDefault, then, if the form is valid, sends form.submit(). I proposed a fix in #131 , so please take a look at it.
The problem is that such checks currently do not work in Symfony:
if ($myForm->get('back')->isClicked()) { ... }
The text was updated successfully, but these errors were encountered:
Currently, the submit button is not preserved because this package calls
event.preventDefault
, then, if the form is valid, sendsform.submit()
. I proposed a fix in #131 , so please take a look at it.The problem is that such checks currently do not work in Symfony:
The text was updated successfully, but these errors were encountered: