#10319 closed bug (fixed)
Datepicker: Date not highlighted when moving around with keyboard interaction
Reported by: | poff | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.11.1 |
Component: | ui.datepicker | Version: | 1.11.0 |
Keywords: | regression | Cc: | |
Blocked by: | Blocking: |
Description
When using keyboard interaction (such as ctrl + arrow keys) to move around in the datepicker, the date is no longer highlighted in version 1.11.0, so you don't know what date it is you're about to select. This used to work in 1.10.4.
Examples:
Working (1.10.4): http://jsfiddle.net/z2BWA/
Broken (1.11.0): http://jsfiddle.net/2WvGV/
As of right now, this is also broken in the latest git version.
It seems like this was broken with the commit f0b4967 fixing the issue #5816. After reverting the change made in f0b4967, highlighting with keyboard interaction works again.
Change History (3)
comment:1 Changed 8 years ago by
Keywords: | regression added |
---|---|
Status: | new → open |
comment:2 Changed 8 years ago by
Resolution: | → fixed |
---|---|
Status: | open → closed |
comment:3 Changed 8 years ago by
Milestone: | none → 1.11.1 |
---|
Note: See
TracTickets for help on using
tickets.
Datepicker: Abstract mouseover logic to avoid explicit event trigger
The reliance on
.mouseover()
caused an issue in some circumstances (see #5816). The removal of.mouseover()
broke keyboard navigation (see #10319).Fixes #10319 Closes gh-1290