Litepicker
Litepicker copied to clipboard
Disable weekdays
Hello there,
My questions is if it is possible to en/disable specific weekdays. For instance disable all wednesdays or mondays.
Thanks!
Solution:
lockDaysFilter: (day) => {
const d = day.getDay();
return [2, 3, 4, 6, 0].includes(d);
},