2X faster development
The ultimate ASP.NET MVC UI toolkit to boost your development speed.
Disabling weekend dates in DatePicker controlYou 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. Sample: http://www.syncfusion.com/downloads/support/directtrac/142157/ze/DatepickerWeekEnd130505585882 |
2X faster development
The ultimate ASP.NET MVC UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.