0
I want to know how I do to start the date enabled for tomorrow’s day in the bootstrap datepicker, for example, the user can not select the date of today or yesterday, the user can only click on dates from tomorrow on up to 3 working days, not being able to click on Sundays either.
Follows my code:
$('.datepicker').datepicker({
format: "dd/mm/yyyy",
language: "pt-BR",
minViewMode: 0,
orientation: 'auto',
startDate: "date",
autoclose: true,
daysOfWeekDisabled: ['0']
});
Someone qualifies to solve this problem?