How can I set the min/max after the datetimepicker has been created?
With the datepicker I can do something like this:
var start = $("#start").kendoDatePicker();
start.max(endDate);
However, the datetimepicker won't allow that.
I get the error as
"Uncaught TypeError: start.max is not a function"
Do it like kendo doc here does, just like this i limit min to yesterday and max to tomorrow :
Here is the kendo dojo as working example