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
When the date picker has selectMonths true, clicking a month causes the picker--opened class to be removed from the calendar display. I've recorded a quick screencast which displays this behaviour:
along with the code I'm using to implement the date picker.
$datePicker.pickadate({
clear: '',
min: new Date(),
selectMonths: true,
format: 'mmmm dd, yyyy',
onSet: function(event) {
// Make sure the user did not select a timestamp which occurs in
// the past. Displays warning to user when it does.
if (that.get('dateIsValid')) {
that.set('messageDisplay', '');
} else {
that.set('messageDisplay', 'The scheduled date occurs in the past.');
}
}
});
I'm using the following versions:
picker.js: v3.0.4
date picker: v3.0.4
Chrome for Mac: Version 29.0.1547.3 dev
OS 10.7.5
The text was updated successfully, but these errors were encountered:
Ah I see.. it’s actually the picker--focused class that gets removed. The dates are still disabled - but the CSS presents it as not. A fix is coming soon..
When the date picker has
selectMonths
true, clicking a month causes thepicker--opened
class to be removed from the calendar display. I've recorded a quick screencast which displays this behaviour:http://screencast.com/t/36zPwZ2n
along with the code I'm using to implement the date picker.
I'm using the following versions:
picker.js: v3.0.4
date picker: v3.0.4
Chrome for Mac: Version 29.0.1547.3 dev
OS 10.7.5
The text was updated successfully, but these errors were encountered: