Kendo DateTimePicker change default time interval gap
Posted: 21 Mar 2017
How to change the interval in datetime field using kendo datetimepicker template to 15min?Right now default is 30min
Design SharePoint forms with tabs, complex tables, accordions, sub-lists, and 3rd party columns
https://spform.com/forum/
Code: Select all
fd.field('FieldName').control('kendoDateTimePicker')
.done(function(picker) {
picker.setOptions({interval: 15});
});