Our team is running into an issue with our date picker. We've a site we made with razor pages and bootstrap 5 and we have a form with a date picker. The date isn't a required field, so we have it as nullable. We're also using the jquery-validation and jquery-validation-unobtrusive which is what we've identified as causing the issue.
With the jquery-validation commented out, we are getting back the default browser pop-up, informing us that the date we entered was invalid (ie - 2/31/2023). When jquery-validation was re-enabled, this pop-up is getting suppressed. With the suppressed pop-up, the DateTime is returning a null value when passed an invalid date.
Ideally, we'd like to continue using the jquery-validation, but are wondering why this suppression is happening to begin with or if anyone else has run into this issue.