Multiple-Dates-Picker-for-jQuery-UI
Multiple-Dates-Picker-for-jQuery-UI copied to clipboard
Automatic Dates are selecting
I am calling multidatepicker at time of when i am selecting drop down foreach drop down datepicker will load like suppose i select 1 date picker will load and give me calendar suppose 2 again it will load and give the calendar so the issue is when the calendar is loading second time it is automatically selecting today date.
jQuery('#calender').multiDatesPicker({
altField: '#altField'
});

Please reply as soon as possible
Thanks & Regards Anand Pandey
Found a solution, when I init, and re-init the calendar, I remove the today selection, and then only, add dates
$("#dates").multiDatesPicker('removeIndexes', 0); // removes today automatic selection
$("#dates").multiDatesPicker('addDates', dates);