Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#5984 closed bug (fixed)

Datepicker showing multiple months highlights selected day in all of them

Reported by: kbwood Owned by:
Priority: major Milestone: 1.8.6
Component: ui.datepicker Version: 1.8.4
Keywords: Cc:
Blocked by: Blocking:

Description

From forums: http://forum.jquery.com/topic/datepicker-showing-multiple-months-highlights-selected-day-in-all-of-them.

If you configure a datepicker to show multiple months, and the field it's tied to has a date entered, when the picker opens it highlights that day of the month in all displayed months. You can see this happen in the 'Display multiple months' demo, by clicking in the field to open the picker, choosing a date, then opening the picker again. Whatever day you picked is highlighted in all months, so there's no way to tell which one is actually selected.

Revert the change made here (jquery.ui.datepicker.js, line 1496):

            (printDate.getTime() == selectedDate.getTime() ? ' ui-state-active' : '') + // highlight selected day

to this:

            (printDate.getTime() == currentDate.getTime() ? ' ui-state-active' : '') + // highlight selected day

Attachments (1)

jquery-ui-1.8.5.custom.min.js (199.5 KB) - added by ergec 13 years ago.
Fixed Javascript File

Download all attachments as: .zip

Change History (5)

comment:1 Changed 13 years ago by Scott González

Milestone: TBD1.9
Resolution: fixed
Status: newclosed

Fixed in a936eb3.

Changed 13 years ago by ergec

Fixed Javascript File

comment:2 in reply to:  description Changed 13 years ago by ergec

If you are using minified & combined version of UI downloaded through ThemeRoller (jquery-ui-1.8.5.custom.min.js), you won't be able to find the line mentioned above.

Instead, try to change this (jquery-ui-1.8.5.custom.min.js, line 534):

q.getTime()==J.getTime()?" ui-state-active":""

into this:

q.getTime()==u.getTime()?" ui-state-active":""

comment:3 Changed 13 years ago by Scott González

Milestone: 1.91.8.6

comment:4 Changed 13 years ago by Lim Chee Aun

Datepicker: Hightlight the curerent date, not the selected date. Fixes #5984 - Datepicker showing multiple months highlights selected day in all of them

Changeset: a936eb3c0982293940a3f3135fc85178bf17534d

Note: See TracTickets for help on using tickets.