Multiple-Dates-Picker-for-jQuery-UI
Multiple-Dates-Picker-for-jQuery-UI copied to clipboard
Navigate and View months in calendar when disabled
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
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!