I use a datepicker for choosing an appointment day. I already set the date range to be only for the next month. That works fine. I want to exclude Saturdays and Sundays from the available choices. Can this be done? If so, how?
|
10
|
|
|
|
|
|
There is the beforeShowDay The function takes a date as a parameter and must return an array with [0] equal to true/false indicating whether or not this date is selectable and [1] equal to a CSS class name(s) or '' for the default presentation. It is called for each day in the datepicker before is it displayed. Display some national holidays in the datepicker.
One built in function exists, called noWeekends, that prevents the selection of weekend days.
To combine the two, you could do something like (assuming the
|
||
|
|
|
|
In this version, month, day, and year determines which days to block on the calendar.
|
|||
|
|
|
|
I get an error that natDays is not defined. natDays = [ [5, 4, 'us'], [8, 17, 'id'], [9, 7, 'br'], [10, 1, 'cn'], [11, 22, 'lb'], [12, 12, 'ke'] ];
|
||
|
|
|
|
If you don't want the weekends to appear at all, simply: CSS
|
||
|
|
|
|
See this question: http://stackoverflow.com/questions/224283/jquery-datepicker-restrict-dates-from-server-side-asp-net |
||
|
|
