Definitely do not pass null these methods, you will get a TypeError exception;)
When you omit MinDate and MaxDate from your markup, telerik internally defaults the client to new Date(1980, 0, 1) and new Date(2099, 11, 31) respectively. (Note: this happens in the Telerik.Web.UI.RadDateInput constructor Telerik.Web.UI.RadDateInput ).
So, the trick to “cleaning” these properties is to return them to their default values:
$find('RadDateTimePicker').set_minDate(new Date(1980, 0, 1)); $find('RadDateTimePicker').set_maxDate(new Date(2099, 11, 31));
I know that it is wrong to do so, but this is the method that most closely matches what telerik does anyway. (In addition, telerik will ignore everything you pass to it, for example 0 , null , "" , etc.)
source share