Jquery UI datepicker breaking when adding min max dates. Heres my code, works fine with the dateformat and allowTimes, but brings up a blank calender when adding min / max dates.
$('#datetimepicker').datetimepicker({
format:'d/m/Y H:i',
minDate: new Date(2014, 10, 1),
maxDate: new Date(2014, 11, 31),
allowTimes:[
'11:00','11:30','12:00','12:30','13:00','13:30','14:00',
'18:00','18:30','19:00','19:30','20:00','20:30','21:00','21:30'
]
});