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
If you type an invalid date into the form, it gets wiped and the form reloads with a "missingRequiredFields" error, instead of an "invalidDate" error.
This is because the controller throws away any invalid dates during input parsing. Actual form validation doesn't occur until during save(). But by then, whatever garbage the user typed is long gone.
The text was updated successfully, but these errors were encountered:
If you type an invalid date into the form, it gets wiped and the form reloads with a "missingRequiredFields" error, instead of an "invalidDate" error.
This is because the controller throws away any invalid dates during input parsing. Actual form validation doesn't occur until during save(). But by then, whatever garbage the user typed is long gone.
The text was updated successfully, but these errors were encountered: