Page 1 of 1

Kendo DateTime Picker Default Value Change?

Posted: 14 Oct 2018
by YumaIT
How do I change the default time intervals from 30 minutes to 1 minute intervals when using the Kendo DateTime pickers?

Re: Kendo DateTime Picker Default Value Change?

Posted: 15 Oct 2018
by AlexZver
Hi!

Please, use this code:

Code: Select all

fd.field('InternalNameDateTime').control('kendoDateTimePicker')
	.done(function(picker) {
		picker.setOptions({interval: 1});
});
Notice that 'InternalNameDateTime' is an internal name of your field.