periodpicker
periodpicker copied to clipboard
seconds not included in return value
I just created a range picker and add seconds to the time dial. But when I get the range value the seconds are always just 00 even though I picked differently in the dial.
var periodpickerOptionsRange = {
useTimepickerLimits: true,
timepicker: true,
tabIndex: 0,
formatDate: 'YYYY-MM-DD',
formatDateTime: 'YYYY-MM-DD',
norange: false,
cells: [1, 2],
animation: false,
lang: "en",
timepickerOptions: {
hours: true,
minutes: true,
seconds: true,
ampm: false
},
navigate: false,
clearButtonInButton: true,
placement: 'auto'
};
... have I missed something?