DefinitelyTyped/jquery.ui.datetimepicker/jquery.ui.datetimepicker-tests.ts
2016-05-10 12:22:25 -07:00

23 lines
415 B
TypeScript

/// <reference types="jquery"/>
// basic no options
$('#datetimepicker').datetimepicker({
});
// basic with some options
$('#datetimepicker').datetimepicker({
dateFormat: "yy-mm-dd",
timeFormat: 'HH:mm',
nextText: "",
prevText: ""
});
// function within the plugin
$('#datetimepicker').datetimepicker('formatTime', {
format: "HH:mm",
time: { hours: 1, minutes: 1, seconds: 1 }
});