Please provide an option that allows to drag the Scheduler cells in order to define the time span when creating a new event. The behavior should be the same as the one demonstrated in the following example:
Thank you
Hi,
We are currently migration from jquery scheduler to angular scheduler and we are missing few feature : event selection and range creation
https://demos.telerik.com/kendo-ui/scheduler/event-selection
Any plan for this features in angular scheduler ?
Currently the properties workWeekStart and workWeekEnd are exposed by the following Kendo UI for Angular Scheduler component.
WeekViewComponent and WorkWeekViewComponent both use these properties:
The scheduler also offers a TimelineWeekView component, which, as expected, greys-out the non-working days.
Additional info: created after looking at this issue in the Kendo-Angular repo.
Hi,
I have events with reccurenceRule with start time setted to 00:00:01:
{ id: 4, title: '1 OK', start: new Date('2020-10-19T00:00:01'), end: new Date('2020-10-19T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201028;BYDAY=MO', }, { id: 5, title: '2 OK', start: new Date('2020-10-19T00:00:01'), end: new Date('2020-10-19T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201028;BYDAY=TU', }, { id: 6, title: '3 OK', start: new Date('2020-10-19T00:00:01'), end: new Date('2020-10-19T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201028;BYDAY=WE', },
After changing start time to be 00:00:00:
{ id: 1, title: '1 BAD', start: new Date('2020-10-05T00:00:00'), end: new Date('2020-10-05T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201014;BYDAY=MO', }, { id: 2, title: '2 BAD', start: new Date('2020-10-05T00:00:00'), end: new Date('2020-10-05T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201014;BYDAY=TU', }, { id: 3, title: '3 BAD', start: new Date('2020-10-05T00:00:00'), end: new Date('2020-10-05T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201014;BYDAY=WE', },
StackBlitz: https://stackblitz.com/edit/angular-pusn73-utpuwe?file=src%2Fapp%2Fapp.component.ts