Mike Deluca
Mike Deluca

Reputation: 1210

Disable days of the week in Kendo grid calendar

How would you go about disabling the selection of all days of the week except for Monday when editing a record of a Kendo grid that has a date field?

Upvotes: 1

Views: 1782

Answers (1)

Petur Subev
Petur Subev

Reputation: 20203

You cannot out-of-the-box. However you can try the following:

  1. Create custom editor for the Grid like shown here.
  2. Use datepicker which is configured with templates to display the next week like disabled. Similar way to the one shown here.
  3. Use the change event to prevent the user from selecting like demonstrated here.

Upvotes: 2

Related Questions