I got an odd behaviour when using bootstrap-datetimepicker v. 4.17.47. Here is my picker configuration:
format: 'YYYY-MM-DD HH:mm',
showTodayButton: true,
useCurrent: false,
showClear: true,
minDate: moment('{{ ts_beg }}'),
maxDate: moment('{{ ts_end }}')
When setting minDate and maxDate to the same day but with different hours, let's say 2018-2-1 00:00
and 2018-2-1 02:00
, I am unable to choose both date and time:
Does anyone has a workaround to solve this issue ?