Last active
October 9, 2018 14:18
-
-
Save najlepsiwebdesigner/4970984 to your computer and use it in GitHub Desktop.
Implementation of disabled elements for foundation datepicker project https://github.com/najlepsiwebdesigner/foundation-datepicker/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// implementation of disabled form fields | |
var nowTemp = new Date(); | |
var now = new Date(nowTemp.getFullYear(), nowTemp.getMonth(), nowTemp.getDate(), 0, 0, 0, 0); | |
var checkin = $('#dpd1').fdatepicker({ | |
onRender: function (date) { | |
return date.valueOf() < now.valueOf() ? 'disabled' : ''; | |
} | |
}).on('changeDate', function (ev) { | |
if (ev.date.valueOf() > checkout.date.valueOf()) { | |
var newDate = new Date(ev.date) | |
newDate.setDate(newDate.getDate() + 1); | |
checkout.update(newDate); | |
} | |
checkin.hide(); | |
$('#dpd2')[0].focus(); | |
}).data('datepicker'); | |
var checkout = $('#dpd2').fdatepicker({ | |
onRender: function (date) { | |
return date.valueOf() <= checkin.date.valueOf() ? 'disabled' : ''; | |
} | |
}).on('changeDate', function (ev) { | |
checkout.hide(); | |
}).data('datepicker'); |
gist should be fixed now, for examples please check example file in datepicker repository:
http://github.com/najlepsiwebdesigner/foundation-datepicker
Change this:
if (ev.date.valueOf() > checkout.date.valueOf()) {
var newDate = new Date(ev.date)
newDate.setDate(newDate.getDate() + 1);
checkout.update(newDate);
}
checkin.hide();
To this:
if(ev.date){
if (ev.date.valueOf() > checkout.date.valueOf()) {
var newDate = new Date(ev.date)
newDate.setDate(newDate.getDate() + 1);
checkout.update(newDate);
checkin.hide();
}
}
https://gist.github.com/onionstand/b006d424c220c412c7c6fae809d2f67a
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 5 mentions an ID. How would the code change if a document had multiple datepickers with a class, but no IDs? (This setup works fine until there comes the time to disable past dates.) Thank you.