0

As you can see on the image I want to disable click on December 2017 (black box). How can I do this?

enter image description here

My javascript function for the calendar.

$('#datepicker').datepicker({ changeYear: true, multidate: true, maxViewMode: 0, startDate: today, }) 
1

1 Answer 1

1

Maybe you could use changeMonth option as following :

$('#datepicker').datepicker({ changeYear: true, changeMonth: false, multidate: true, maxViewMode: 0, startDate: new Date(), }); $('#datepicker2').datepicker({ changeYear: true, changeMonth: true, multidate: true, maxViewMode: 0, startDate: new Date(), });
input { width: 25%; margin: 1%; }
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script> <input type="text" id="datepicker" placeholder="You can't change my month !" /> <input type="text" id="datepicker2" placeholder="You can change my month !" />

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.