https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33886 --- Comment #18 from Brendan Lawlor <blawlor@clamsnet.org> --- The native date input works really nice. One small accessibility issue I found is that when focus is on the calendar icon, the enter key does not work as expected to open the date picker because of the class="noEnterSubmit" I looked into it and it doesn't seem to work to remove the noEnterSubmit class where you remove the flatpicker class because of a line on members.js. It could be fixed like this on prog/js/members.js line 288: - $("fieldset.rows input, fieldset.rows select").addClass("noEnterSubmit"); + $("fieldset.rows input:not([type=date]), fieldset.rows select").addClass("noEnterSubmit"); The other thing I found is that this also updates the Expiry date input to use the native html, but leaves the registration date as a flatpicker. Was that intentional? I think for consistency all three date inputs on the member entry page should work the same way. Overall I like the move to using the native html date input, but the implementation is a little weird that it's still a flatpicker input in the template and it's just updated with js. I wonder what's the rational for that? -- You are receiving this mail because: You are watching all bug changes.