If I set the max property to "new Date()" the time picker does not allow me to pick a time later than now yesterday.
If "new Date()" is 27-June-2018 17:48 I can't select 26-June-2018 18:00
Is there a work-a-round? Or can I somehow have the max only affect the datepicker and not the timepicker?
$("#date-of-control").kendoDateTimePicker({
value: new Date(),
dateInput: true,
format: "dd-MMM-yyyy HH:mm",
timeFormat: "HH:mm",
weekNumber: true,
interval: 30,
max: new Date()
});