You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1030 reported a similar bug a few months ago, where calling selectDates with the minimum date wouldn't work, and #1092 fixed it by always setting the date's hour to 12, which is equal to the calendar module's dates.
A similar issue is still happening with the maximumDate in the current (3.15.0) YUI version though. It happens if Y.Calendar.selectDates receives the maximumDate with minutes/seconds/milliseconds in it. For example: "Thu Jul 25 2013 13:20:13". The fix in #1092 transforms this example date to "Thu Jul 25 2013 12:20:13", but that still won't pass the maximumDate check, so the date is not set.
I believe that to fix this we can just replace the:
oDate.setHours(12);
line with
oDate = this._normalizeTime(oDate);
since that will also set minutes/seconds/milliseconds to 0.
If you guys prefer I can do this myself and send a pull request for it, I'm just opening this issue first since I haven't contributed to YUI before.
The text was updated successfully, but these errors were encountered:
mairatma
added a commit
to mairatma/yui3
that referenced
this issue
Apr 3, 2014
…e with minutes/seconds
Fixing the issue explained in yui#1731, which causes selectDates to fail when the user passes the maximumDate with minutes or seconds to it. The calendar code is already resetting the hours part of the date's time, but this diff resets everything to make sure that date selection doesn't take the date's time into account anymore.
…e with minutes/seconds
Fixing the issue explained in yui#1731, which causes selectDates to fail when the user passes the maximumDate with minutes or seconds to it. The calendar code is already resetting the hours part of the date's time, but this diff resets everything to make sure that date selection doesn't take the date's time into account anymore.
#1030 reported a similar bug a few months ago, where calling selectDates with the minimum date wouldn't work, and #1092 fixed it by always setting the date's hour to 12, which is equal to the calendar module's dates.
A similar issue is still happening with the maximumDate in the current (3.15.0) YUI version though. It happens if Y.Calendar.selectDates receives the maximumDate with minutes/seconds/milliseconds in it. For example: "Thu Jul 25 2013 13:20:13". The fix in #1092 transforms this example date to "Thu Jul 25 2013 12:20:13", but that still won't pass the maximumDate check, so the date is not set.
I believe that to fix this we can just replace the:
line with
since that will also set minutes/seconds/milliseconds to 0.
If you guys prefer I can do this myself and send a pull request for it, I'm just opening this issue first since I haven't contributed to YUI before.
The text was updated successfully, but these errors were encountered: