Bug Tracker

Modify

Ticket #3570 (closed bug: invalid)

Opened 5 years ago

Last modified 5 years ago

UI.DatePicker has duplicate date

Reported by: camoire Owned by:
Priority: major Milestone: 1.3
Component: plugin Version: 1.2.6
Keywords: ui datepicker Cc:
Blocking: Blocked by:

Description

The UI.DatePicker plugin has a duplicate day in the first full week of November. This happens for every year and can be seen in any of the demos for the datepicker.

Change History

comment:1 Changed 5 years ago by rstorch

I am seeing this behavior after the first Sunday in November as well as some odd behavior after the second Sunday in March (date selected state no longer works after that Sunday). As it turns out, these are the times of the year when we (US) change our clocks forward and back.

Bug also appears to be in release 1.5.2 (stable). I'm not sure about 1.6rc2.

comment:2 Changed 5 years ago by jehinkle

The problem is daylight savings time. The Date object sets the year,month and day, but with no time specified defaults to midnight. So when the time increments by 1 day, and then daylight savings sets it back 1 hour, you get two November 2 on the calendar. Include a time greater than 1 when the date object is created and problem is solved.

Change line 1272 in ui.datepicker.js or line 5801 in jquery.ui.all.js from:

var printDate = new Date(drawYear, drawMonth, 1 - leadDays);

to:

var printDate = new Date(drawYear, drawMonth, 1 - leadDays,12);

comment:3 Changed 5 years ago by flesler

  • Status changed from new to closed
  • Resolution set to invalid

This belongs to the  UI Bug Tracker.

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.