On a web app with multiple input fields <input type="date" />
I have gotten various complaints from users who find the Android datepicker confusing. They can't figure out how to select the year and I have to admit: It really is not obvious (example image).
I tried a workaround with a simple text field and regex validation but it is convoluted and prone to error (leap years etc.).
Is there a way to disable the datepicker widget (in general or only on mobile) while still keeping the iput type="date"
and accessible keyboard input options?
(This question is more or less the opposite of this question.)