when I set the Minimum date as Today for Kendo UI DateTimePicker and when I select the current date from the calendar it selects the wrong date(when selected 06/05/2013 it displays as 07/05/2013).check this fiddle http: //jsfiddle.net/n6GtT/12/
var start = $("#start").kendoDateTimePicker({
//value: today,
max:today,
change: startChange,
parseFormats: ["MM/dd/yyyy"]
}).data("kendoDateTimePicker");
var end = $("#end").kendoDateTimePicker({
//value: today,
min:today,
change: endChange,
parseFormats: ["MM/dd/yyyy"]
}).data("kendoDateTimePicker");
start.max(end.value());
end.min(start.value());
});
谢谢