Multiple-Dates-Picker-for-jQuery-UI icon indicating copy to clipboard operation
Multiple-Dates-Picker-for-jQuery-UI copied to clipboard

Navigate and View months in calendar when disabled

Open sameeraje opened this issue 8 years ago • 1 comments

Can you implement this plugin like when it's disabled still we can see the selected dates by navigating via next and prev buttons. thanks Feature request

sameeraje avatar Feb 23 '17 10:02 sameeraje

Was having the same issue. Found this to be a solution

function DisableWeekDays(date) { var weekenddate = $.datepicker.noWeekends(date); var disableweek = [!weekenddate[0] && weekenddate[0]]; return disableweek; }

$('#calendar').multiDatesPicker({ numberOfMonths: [1,3],
beforeShowDay: DisableWeekDays });

Hope it works for you as well!

ahdesya-DS avatar Mar 07 '17 06:03 ahdesya-DS