I'm having trouble with a datepicker that I have created. I am using a very similar datepicker on the same page with no issue at all. The date picker shows with no selectable days, even though when I debug the 'limitToOneYear' function, it is returning true for some days. Am I missing something simple and obvious?

    function limitToOneYear(date) {
        var thisdate = Date.parse(date);
        var now = new Date();
        var today = Date.parse(new Date(now.getFullYear(),now.getMonth(),now.getDate()));
        var maxDate = Date.parse(new Date((now.getFullYear() + 1), now.getMonth(), now.getDate()));
        return (thisdate >= today && thisdate < maxDate);
    }

    $(".expirationDate").datepicker({
        showOn: 'both',
        buttonImage: '/images/datepicker/button.gif',
        buttonImageOnly: true,
        beforeShowDay: limitToOneYear
    });
link|improve this question

78% accept rate
Why are you creating a Date instance just to pass to Date.parse() to create a new Date instance? That just strikes me as unnecessary and convoluted, unless there's something important I'm missing. – Anthony Grist Jan 30 at 14:34
new date get's the current date unless you pass stuff to it, date parse gets a representative integer. So what it does is get an integer representative of today's date (midnight). There may be an easier way to compare dates but I'm currently unaware of it – Jeff Lauder Jan 30 at 14:49
Aha, the fact that it returns an integer representation, rather than a Date object, is what I was missing. Thanks! – Anthony Grist Jan 30 at 14:54
feedback

3 Answers

up vote 1 down vote accepted

Should you not be returning an array from your limitToOneYear function as per the DatePicker API for beforeShowDay

So your limitToOneYear function should be something like this

function limitToOneYear(date) {         
    var thisdate = Date.parse(date);         
    var now = new Date();         
    var today = Date.parse(new Date(now.getFullYear(),now.getMonth(),now.getDate()));         
    var maxDate = Date.parse(new Date((now.getFullYear() + 1), now.getMonth(), now.getDate()));         
    return [(thisdate >= today && thisdate < maxDate), '']; 
} 
link|improve this answer
Yes, yes I should, I don't know how I missed that, thank you! – Jeff Lauder Jan 30 at 15:13
You are welcome Jeff, Glad to help! – Nicholas Murray Jan 30 at 15:21
feedback

I found A solution so I'm posting it, I would still like to understand why my previous solution isn't working so I will select a different answer if it presents itself, but I ended up taking advantage of the minDate maxDate properties of datepicker:

    var now = new Date();
    var endDate = now;
    endDate = new Date((now.getFullYear() + 1), now.getMonth(), now.getDate());
    $(".expirationDate").datepicker({
        showOn: 'both',
        buttonImage: '/images/datepicker/button.gif',
        buttonImageOnly: true,
        minDate : now, 
        maxDate: endDate
    });
link|improve this answer
feedback

Maybe I'm lost here but don't you need to pass in a date to limitToOneYear?

$(".expirationDate").datepicker({
    showOn: 'both',
    buttonImage: '/images/datepicker/button.gif',
    buttonImageOnly: true,
    beforeShowDay: limitToOneYear(/*pass the date here*/)
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.