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
changeTime
, http://jsfiddle.net/j3kf2p2e/
$('#timepicker').timepicker({
showMeridian: true,
minuteStep: 1,
showInputs: true,
}).on('changeTime.timepicker', function(e) {
var h= e.time.hours;
var m= e.time.minutes;
var mer= e.time.meridian;
//convert hours into minutes
m+=h*60;
//10:15 = 10h*60m + 15m = 615 min
if(mer=='AM' && m<615)
$('#timepicker').timepicker('setTime', '10:15 AM');
});
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
});