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 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) {
            //Removes 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

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