Is there any (easy) way to set the jQuery UI Datepicker to disallow selection of specific, predetermined days?

I was able to get this approach working, however, it produces a null error which prevents it from displaying in IE.

'natDays[...].0' is null or not an object

Thanks in advance!

UPDATE: Might help if I included some code, right? Anyway, most of this was taken straight from the aforementioned thread:

natDays = [
        [7, 23], [7, 24], [8, 13], [8, 14], 
    ];

    function nationalDays(date) {
        for (i = 0; i < natDays.length; i++) {
            if (date.getMonth() == natDays[i][0] - 1
            && date.getDate() == natDays[i][1]) {
                return [false, natDays[i][2] + '_day'];
            }
        }
        return [true, ''];
    }

    function noWeekendsOrHolidays(date) {
        var noWeekend = $.datepicker.noWeekends(date);
        if (noWeekend[0]) {
            return nationalDays(date);
        } else {
            return noWeekend;
        }
    }


    $(function() { 
        $("#datepicker").datepicker({
            inline: true,
            minDate: new Date(2009, 6, 6), 
            maxDate: new Date(2009, 7, 14), 
            numberOfMonths: 2, 
            hideIfNoPrevNext: true,
            beforeShowDay: $.datepicker.noWeekends,
            altField: '#alternate',
        }); 
    });

Thanks again!

link|improve this question

72% accept rate
could you paste your code of what you have thats producing the error – TStamper Mar 24 '09 at 15:43
Need a code sample of at least the line in question... – Tracker1 Mar 24 '09 at 15:47
feedback

4 Answers

up vote 7 down vote accepted

Have you tried declaring natDays properly with the 'var' keyword in front?

Also - you have an extra comma at the end of your natDays definition.

natDays[i][2] won't work as your the arrays only have 2 items in them - try just ''

Additionally, you'll want to set your beforeShowDay function name correctly - doesn't look like it's even calling your custom function

link|improve this answer
Hmm... just tried it. No luck. This is the error that IE is returning: 'natDays[...].0' is null or not an object – Sam Mar 25 '09 at 17:32
See my recent edit... it's not defined properly (extra comma) – Hainesy Mar 25 '09 at 17:33
Okay... I think we're getting somewhere! The extra comma fixed things in IE8. Can you show me what you mean with your second comment though? (I'm a JS novice... can you tell?) Thank you! – Sam Mar 25 '09 at 17:49
Oh!!! The comma at the end! Now it works perfectly. Thanks! – Sam Mar 25 '09 at 21:03
Cool glad to have helped – Hainesy Mar 26 '09 at 9:51
feedback

Here is a way to disable specific dates from being selected: jQuery - Datepicker - Disable Specific Dates

link|improve this answer
feedback
beforeShowDay: $.datepicker.noWeekends,

will be

beforeShowDay: noWeekendsOrHolidays,
link|improve this answer
-1 for leaving your email address. – Mohit Jain Dec 7 '10 at 13:20
@MohitJain. I don't think it's a good reason. – gdoron Feb 8 at 19:58
feedback

The problem with IE is most probably on the following line:

altField: '#alternate',
}); 

Try to remove the comma symbol and it should work.

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.