i have a datetimepicker from bootstrap and i want to disable some days and start the date in two days. The code is:
$('#datetimepicker').datepicker
({
daysOfWeekDisabled: '06',
startDate: '+2d'
});
When I add two days, the datetimepicker add days off, and I want to add only the days enabled.
How can i do?
Roberto