How to restrict the start and end times of an appointment to be at least 10 minutes apart as an integer multiple (e.g., 10, 20, 30, etc.)?
1 Answer, 1 is accepted
0
Stenly
Telerik team
answered on 01 May 2024, 11:06 AM
Hello Denny,
To achieve this requirement, you could create a new class that extends the ScheduleViewDragDropBehavior object and overrides the CanResize method. In it, you could check the start and end values of the appointment and return false if they are lower than 10 minutes (or a different span depending on your requirements).
I hope the provided information will be of help to you.