David-Mulder / paper-date-picker

A date picker à la Material Design
GNU General Public License v3.0
66 stars 21 forks source link

Date selection bug in the picker or the demo code #9

Open emmanuelbuah opened 9 years ago

emmanuelbuah commented 9 years ago

Date selection on calendar (at demo page http://david-mulder.github.io/polymer-docs/bower_components/paper-date-picker/demo.htm) selects the previous date/cell of the date/cell you click.

metasean commented 9 years ago

There are two off-by-one errors, one related to the month and the second to the day.

For example:

  1. http://david-mulder.github.io/polymer-docs/bower_components/paper-date-picker/demo.html
  2. click on OPEN DATE PICKER DIALOG
  3. Scroll to June 2015 (fwiw: I'd prefer to default the month on the right to match the date displayed on the left)
  4. Click on June 3, 2015.
  5. Then the date on the left shows July 3rd, 2015 (off by 1 month) while the calender on the right shows June 2nd, 2015 (off by one day).