jquery-timepicker
jquery-timepicker copied to clipboard
DisableTimeRange and minTime Conflict
Hi sir,
DisableTimeRange is not working if DisableTimeRange less than minTime.
$('.timepicker').timepicker({
'timeFormat': 'h:i A',
'minTime' : "11:30 am",
'step': '30',
'disableTimeRanges': [['10am', '11am']]
});
Please find it in the fiddle http://jsfiddle.net/neethukcbsb/95hpwcfw/1/
Is there a solution for this problem ? Thank you.
This should solve your problem.
$('.timepicker').timepicker({
'timeFormat': 'h:i A',
'minTime' : "11:30 am",
'maxTime' : "09:30 am",
'step': '30',
'disableTimeRanges': [['10am', '11am']]
});
This will finally be fixed in the next release. Sorry for the wait!