gijgo
gijgo copied to clipboard
how to set maxdate and mindate in Datetimepicker
How to set maxdate and mindate to datetimepicker?
var today = new Date(); $('#date-input').datetimepicker({ modal: true, footer: true, format: 'HH:MM yyyy-dd-mm', maxDate: today, });
Hi, you have to set the datepicker in the config
$('#date-input').datetimepicker({ datepicker: { minDate: new Date(), maxDate: new Date() }, modal: true, footer: true, format: 'HH:MM yyyy-dd-mm' });