T00rk / bootstrap-material-datetimepicker

Datepicker for bootstrap-material
http://t00rk.github.io/bootstrap-material-datetimepicker/
MIT License
9 stars 4 forks source link

invalid date #228

Open ashah976 opened 4 years ago

ashah976 commented 4 years ago

using the timepicker as in instructions the picker pops up fine but upon selecting the times it inputs a date instead??? using boostrap 4.3.1


$('#lbltimenow').bootstrapMaterialDatePicker({ date:false });

<input id="lbltimenow" class="cssTime" />
saumayaranjan commented 4 years ago

var todayDate = new Date().getDate();

$('#lbltimenow').bootstrapMaterialDatePicker({ weekStart : 0, time: false, format : 'DD/MM/YYYY HH:mm', useCurrent : false, defaultDate: moment(todayDate),

});