At the moment I have a datepicker which:

Excludes today, if after 12:00 midday.

Excludes sundays.

<script type="text/javascript">
 $(function() {


            // get today's date
            var myDate = new Date();
            // add one day if after 12:00
            if (myDate.getHours() > 12) {
                        myDate.setDate(myDate.getDate()+1);
            } else {
                myDate.setDate(myDate.getDate()+0);

            };

           $("#delivery-date-textbox").datepicker({
            dateFormat: 'dd-mm-yy',
            minDate: myDate,
            beforeShowDay: function(date){ return [date.getDay() != 0,""]}

            });
            });
</script>

How can I make it also exclude an array of public holidays?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted
+50

I quickly wrote a snippet that I think is a good outline. My main point is that there are two types of national holidays: ones that fall on the same day every year (like Christmas) and ones that fall on different days every year (like Easter). I won't give you the logic here to calculate moving holidays, but my snippet works with an array that can have two types of holidays: month/day (for static) and month/day/year (for changing). You can generate this array the way you want.

The test will run against this array, converts the array's values into Date objects and uses jQuery's inArray() to find matches.

Basic code:

//an array of holidays, defined here, ajaxed or anything
var holidays=['12/24', '1/1', '5/10/2011', '5/25'];

//a function that decides whether a date is a holiday
function isHoliday(date, holidays) {
    var parts, dateArray=[];
    //build Dates from the array
    for (var i=0; i<holidays.length; i++) {
        parts=holidays[i].split('/');
        if (parts.length==2) {
            dateArray.push(new Date(date.getFullYear(), parts[0]-1, parts[1]).getTime());
        } else if (parts.length==3) {
            dateArray.push(new Date(holidays[i]).getTime());
        } else {
            return false;
        }
    }
    return $.inArray(date.getTime(), dateArray)!=-1;
}

$('#fos').datepicker({
    dateFormat: 'dd-mm-yy',
    beforeShowDay: function(date){
        //handling sundays
        if (date.getDay() == 0) {
            return [false];
        }
        //handling holidays
        if (isHoliday(date, holidays)) {
            return [false];
        }
        return [true];
    }
});

And a jsFiddle Demo. Tested successfully on Chrome and FF4.

link|improve this answer
feedback

it might help you ....Click here

/* create an array of days which need to be disabled */
var disabledDays = ["2-21-2010","2-24-2010","2-27-2010","2-28-2010","3-3-2010","3-17-2010","4-2-2010","4-3-2010","4-4-2010","4-5-2010"];

/* utility functions */
function nationalDays(date) {
  var m = date.getMonth(), d = date.getDate(), y = date.getFullYear();
  //console.log('Checking (raw): ' + m + '-' + d + '-' + y);
  for (i = 0; i < disabledDays.length; i++) {
    if($.inArray((m+1) + '-' + d + '-' + y,disabledDays) != -1 || new Date() > date) {
      //console.log('bad:  ' + (m+1) + '-' + d + '-' + y + ' / ' + disabledDays[i]);
      return [false];
    }
  }
  //console.log('good:  ' + (m+1) + '-' + d + '-' + y);
  return [true];
}
function noWeekendsOrHolidays(date) {
  var noWeekend = jQuery.datepicker.noWeekends(date);
  return noWeekend[0] ? nationalDays(date) : noWeekend;
}
/* create datepicker */
jQuery(document).ready(function() {
  jQuery('#date').datepicker({
    minDate: new Date(2010, 0, 1),
    maxDate: new Date(2010, 5, 31),
    dateFormat: 'DD, MM, d, yy',
    constrainInput: true,
    beforeShowDay: noWeekendsOrHolidays
  });
});

(David Walsh blog)

link|improve this answer
feedback

As you've seen, jQuery UI's datePicker can take a helper func to sort out whether or not a given date can be selected. The helper func receives a single date. You can then apply whatever logic you choose to that date as long as you return an array with a single bool value.

Here's a variant of what I've done in the past... not particularly sexy but it works!

//returns a single-item array of true or false. False disables the given date (un-pick-able!)
isWorkingDay = function isWorkingDay(date) {
    var day = date.getDay(),
        d = date.getDate(),
        m = date.getMonth() + 1,
        yyyy = date.getFullYear(),
        dateStr = m + "/" + d + "/" + yyyy,
        weekendDays = [0, 6],
        holidays = ["5/3/2011", "5/24/2011", "5/26/2011"];

    //filter out holidays
    for (var i = 0; i < holidays.length; i = i + 1) {
        if (dateStr === holidays[i]) {
            return [false];
        }
    }

    //filter out weekends (e.g. Saturday & Sunday)
    for (var i = 0; i < weekendDays.length; i = i + 1) {
        if (day === weekendDays[i]) {
            return [false];
        }
    }
    return [true];
};


$(document).ready(function () {
    //initialize datepicker
    $("input.calendar").datepicker({
        beforeShowDay: isWorkingDay
    });
});

I also put together a working demo - check it here: http://jsfiddle.net/2uCxh/

Some notes:
+ You'll need to configure the "holidays" array to your liking (mine has dummy data)
+ I didn't include your time cut-off logic - it can be added pretty easily
+ This is very US-centric

link|improve this answer
Thats brilliant, just what I needed... Thanks very much! – Charles Marsh May 10 '11 at 13:05
feedback

Your Answer

 
or
required, but never shown

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