I am using bootstrap time picker by using bootstrap-timepicker.js and i want to restrict the min-time and max-time of that timepicker .Can anyone please tell me how can i ac
You can use the following:eg if mindate is at 8.00 and maxdate is at 2300hrs
minDate: moment({h:8}), maxDate: moment({h:23}),
that is...
$('#time').bootstrapMaterialDatePicker({ format: 'HH:mm', minDate: moment({h:8}), maxDate: moment({h:23}), clearButton: true, date: false });