Declined
Last Updated: 18 Jul 2023 15:13 by ADMIN
Created by: Architecture Board
Comments: 2
Category: Scheduler
Type: Feature Request
1
the kendo-scheduler-datetime-picker uses the DatePicker component in the template. But from the DatePicker aren't any inputs available to customize. Would be nice to have some inputs available, like 'steps', 'weekNumber' or 'disabledDates'
Declined
Last Updated: 18 Jul 2023 15:12 by ADMIN
Created by: Lance
Comments: 1
Category: Scheduler
Type: Feature Request
1

Hi,

Please provide a way to reuse the default event edit form. That will be beneficial whenever the default edit form should be updated to include a few more fields.

thank you

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.

Declined
Last Updated: 11 Jul 2023 15:13 by ADMIN
Created by: G Walsh
Comments: 1
Category: Scheduler
Type: Feature Request
1

We want to show only workdays (weekends hidden) on more than one week. Please provide a numberOfDays functionality in WokWeek view, so that we can define the number of days without weekends.

Unplanned
Last Updated: 22 Feb 2022 08:02 by Andrius
Created by: Andrius
Comments: 0
Category: Scheduler
Type: Feature Request
1

Hi,

Providing a footer template for the Scheduler component will be a valuable addition to customizing the component.

Thank you.

Unplanned
Last Updated: 05 Jan 2022 08:52 by ADMIN
Created by: Paul
Comments: 0
Category: Scheduler
Type: Feature Request
0
At present you can only drag events in increments of 30 minute. I would like to be able change this to 15 minutes or 5 minutes depending on need.
Declined
Last Updated: 01 Dec 2022 11:11 by ADMIN
Created by: Stefano
Comments: 2
Category: Scheduler
Type: Feature Request
0

I have a data source where the events only have date ranges without time, and for each event I know if it's morning only, afternoon only or full day.

For such a data source, it doesn't really help to display all the times of the day in the Scheduler views. I'd like to just have three categories that reflect my data source: morning only, afternoon only or full day. Is there some way to customize the Scheduler like this?

Declined
Last Updated: 11 May 2020 11:55 by ADMIN
Created by: Paul
Comments: 1
Category: Scheduler
Type: Feature Request
0
Add a function to block out a period of time during the and assign a label to it. (e.g. a lunch break)
Declined
Last Updated: 01 Dec 2022 10:19 by ADMIN
Created by: Sofiane
Comments: 1
Category: Scheduler
Type: Feature Request
0

Please provide an example demonstrating how to import from iCal and export to iCal similar to the following one:

https://demos.telerik.com/kendo-ui/scheduler/import-export-ical

but for the Kendo UI for Angular Scheduler component.

thank you

Completed
Last Updated: 27 Jul 2021 11:39 by ADMIN
Created by: Dzmitry
Comments: 1
Category: Scheduler
Type: Bug Report
0

Custom editing in reactive forms within EditDialogTemplateDirective causes udefined error at EditDialogComponent.titleInput .

Reproducible at example https://www.telerik.com/kendo-angular-ui/components/scheduler/editing/custom-reactive-editing/

 
Declined
Last Updated: 13 Jul 2021 13:03 by ADMIN
Created by: Eric
Comments: 2
Category: Scheduler
Type: Feature Request
0

Hello!

My team has identified a need for a sticky header on the scheduler.  Essentially when scrolling down through a large scheduler, we would like an option for the header to be "sticky" or remain visible atop the scheduler as you scroll.  We are unsure how difficult this would be, but allowing users to retain the resource reference regardless of how far they scroll would be very helpful!!!  If this is not descriptive enough please feel free to let me know, and I can find some examples!

Thank you!

-Eric Reed

Declined
Last Updated: 15 Apr 2019 09:51 by Toine
Created by: Toine
Comments: 2
Category: Scheduler
Type: Feature Request
0

Like in the other scheduler components it would be very nice to highlight the hoverd timeslot and show the start time of the slot when hovering

 

Completed
Last Updated: 11 Aug 2022 08:12 by ADMIN
Created by: Toine
Comments: 2
Category: Scheduler
Type: Feature Request
0

I would be nice to highlight the currently selected event. As in the example below the selected event has a purple border

Completed
Last Updated: 09 Jul 2019 08:34 by ADMIN
Created by: Niki
Comments: 3
Category: Scheduler
Type: Feature Request
0
Possibility to customise each event's color
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

1 2 3 4 5 6