Articles in this section
Category / Section

How to disable the weekend dates in the DatePicker control?

1 min read

Disabling weekend dates in DatePicker control

You can disable the weekend dates by using the BeforeDateCreate event of the ASP.NET DatePicker control. In this event, you can get each date, args.date, and its corresponding element, args.element, in the event argument. In that element, add the class e-disable to the weekend dates as shown in the following code example.

 

@Html.EJ().DatePicker("DatePick").DateFormat("MM/dd/yyyy").ClientSideEvents(e=>e.BeforeDateCreate("disableDate"))

 

<script>
    function disableDate(args) {
        //Finds out the weekend dates [Sunday and Saturday].
        if (args.date.getDay() == 0 || args.date.getDay() == 6) {
            //Remove the current month/other month class and adds the e-disable class to disable the dates.
            $(args.element).addClass('e-hidedate e-disable').removeClass('current-month other-month');
        }
    }
</script>

 

The following screenshot displays the disabled weekend dates in the DatePicker control.

DatePicker control with weekend dates disabled

Sample:

https://www.syncfusion.com/downloads/support/directtrac/142157/ze/DatepickerWeekEnd130505585882



Conclusion

I hope you enjoyed learning about how to disable the weekend dates in the DatePicker control.

You can refer to our ASP.NET MVC DatePicker feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our ASP.NET MVC DatePicker example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!


Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied