Open jcsdesterke opened 2 years ago
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); },
Hello there,
My questions is if it is possible to en/disable specific weekdays. For instance disable all wednesdays or mondays.
Thanks!