Duplicated
Last Updated: 03 Sep 2021 07:07 by ADMIN
Created by: Varun
Comments: 9
Category: Scheduler
Type: Feature Request
12

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:

http://dojo.telerik.com/eqUgI

Thank you

Duplicated
Last Updated: 28 Dec 2021 10:22 by ADMIN
Created by: JMB
Comments: 5
Category: Scheduler
Type: Feature Request
2

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 ? 

Duplicated
Last Updated: 27 Sep 2021 07:45 by ADMIN
Created by: Georgi
Comments: 0
Category: Scheduler
Type: Feature Request
1

Introduction

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 week view only greys-out the non-working days of the week
  • The work week view hides them altogether

The scheduler also offers a TimelineWeekView component, which, as expected, greys-out the non-working days.

 

What this feature request is about

  • Add a TimelineWorkWeekView which hides the non-working days just like the WorkWeekView does.

 

Additional info: created after looking at this issue in the Kendo-Angular repo.

Duplicated
Last Updated: 11 Jul 2024 08:39 by ADMIN

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:

  1. Wednesday's event started showing on October 14th.
  2. Event from Tuesday '2BAD' hass been duplicated and is also shown on October 14th.
 {
      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