vote up 1 vote down star

I want to filter the selectable dates on a datepicker. I basically need to filter by work days - i.e. make holidays and weekends not selectable.

I know you can specify dates using a function in the beforeShowDate: and you can also use $.datepicker.noWeekends.

Question is: can you do both?

flag

3 Answers

vote up 3 vote down check

$.datepicker.noWeekends is a pretty simple bit of code:

function (date) { 
    var day = date.getDay(); 
    return [day > 0 && day < 6, ""]; 
}

Since you're going to have to write up the function for holidays, you can just include this logic in that function too.

link|flag
vote up 0 vote down

Can you do the opposite and have the input what dates are selectable and leave all the rest filtered out?

link|flag
vote up 0 vote down

Yes you can.

i.e. If you only want the user to be able to select Mondays you would add something like:

onlyMondays: function(date){
    var day = date.getDay();
    return [(day == 1), ""]
}
link|flag

Your Answer

Get an OpenID
or

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