Disable Dates In Datepicker

We all worked on datepicker controls, right? But in some situations we may need to add some validations like to restrict some dates in the picker so that user cannot select those and move further. Here we are going to disable all the coming Saturdays. I hope you will like this.

Using the code

The first thing you need to do is including the needed files:

Once you are done adding the files, you need to add a text box in which we are going to implement the picker.

  1. <input type="text" value="Select Date Here" />  

 Now we will create an array which contains the list of dates we need to disable.

  1. var disabledDates = ["2015-11-28""2015-11-14""2015-11-21"]  

Next we will load the datepicker to our text box.

  1. $('input').datepicker(  
  2. {  
  3.     beforeShowDay: function(date)  
  4.     {  
  5.         var string = jQuery.datepicker.formatDate('yy-mm-dd', date);  
  6.         return [disabledDates.indexOf(string) == -1]  
  7.     }  
  8. });  
Have you noticed that we are calling a function beforeShowDay, this is used to disable the dates. It will return false if the date exists in the disabledDates.

That’s all we have done it.

Please see the jsfiddle here: Disable Date In DatePicker

Output

Disable Dates In Datepicker

Conclusion

Did I miss anything that you may think which is needed? Could you find this post as useful? I hope you liked this article. Please share me your valuable suggestions and feedback.

Your turn. What do you think?

A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, ASP.NET Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.

Please see this article in my blog here.


Similar Articles