Relative Content

Tag Archive for datetimenext.jsdatepickercalendar

Disabling date and time ranges in antd datepicker

If i have excludedDates array like this
const excludedDates = [ { start: new Date(2024, 3, 27, 14, 0), // April 27, 2024, 14:00 end: new Date(2024, 3, 28, 14, 0), // April 28, 2024, 14:00 }, { start: new Date(2024, 3, 29, 0, 0), // April 29, 2024, 00:00 end: new Date(2024, 3, 29, 14, 59), // April 29, 2024, 14:59 }, { start: new Date(2024, 3, 30, 14, 0), // April 27, 2024, 14:00 end: new Date(2024, 4, 2, 14, 0), // May 02, 2024, 14:00 }, ];
then how would i disable the range of these dates so that if the day is not fully booked for example 27th april before 14:00 is free then this date would not be disabled but the hours and minutes after 14:00 would be?