Bug Tracker

Ticket #2061 (closed bug: fixed)

Opened 9 months ago

Last modified 8 months ago

if minDate is set to new Date, today is not selectable

Reported by: wortho Assigned to: iMarc
Type: bug Priority: minor
Milestone: 1.2.2 Component: ui
Version: 1.2.1 Keywords: datepicker
Cc: Needs: Review

Description

The documentation says that minDate should be the minimum date the user can select as a date, however, the behaviour is that all dates including the minDate is greyed out.

Either the documentation needs changing or minDate should be the last ALLOWED date for the user to click on.

In my opinion it should be the latter, because people can then easily use new Date() for today instead of writing a function to calculate yesterday.

Attachments

Change History

Changed 8 months ago by paul

  • owner set to iMarc

Changed 8 months ago by kbwood

The minDate value must not have time values in it as this prevents it working correctly. So, for today, use: var today = new Date(); today = new Date(today.getFullYear(), today.getMonth(), today.getDate()); $('???').datepicker({minDate: today});

I'll see if I can enforce this within the code.

Changed 8 months ago by kbwood

  • status changed from new to closed
  • resolution set to fixed

Update code to remove time components of min/max dates before use.

Note: See TracTickets for help on using tickets.