For grid 3.5, the calendar widget, I disable all the days but Monday. However, if the Monday is a holiday, I want to enable only that Tuesday after the holiday.
myCalendar.disableDays[“week”, [2,3,4,5,6,7]);
So, if 5/25/2026 is a holiday and I want to re-enable only Tuesday 5/26/2026.
How do I do that?
Regards and Thanks,
Rich Herring
Hello @rherring,
Since you’re using disableDays("week", [2,3,4,5,6,7]) to disable all days except Monday, you cannot directly re-enable just one Tuesday.
For your use case (disable all days except Monday, but re-enable specific Tuesdays that follow holidays), you may try to use setInsensitiveDays() which works with specific dates:
myCalendar.setInsensitiveDays(["2026-05-24","2026-05-27",new Date(2026,4,28),...]);
Kind regards,