Unplanned
Last Updated: 13 Jan 2023 06:33 by Jakub
If I set the NumberOfDays parameter to a number greater than 28 and the Display Scale and Layout is set to a percentage higher than 100%, the header labels that denote the hours are not rendered in the correct places.
Unplanned
Last Updated: 30 Nov 2022 13:08 by Darren
Created by: Darren
Comments: 0
Category: Scheduler
Type: Feature Request
1

Hello,

It would be nice if there was a way to indicate to the user that there are events earlier or later in the day that are not in the current viewable area.

Unplanned
Last Updated: 30 Nov 2022 13:06 by Darren
Created by: Darren
Comments: 0
Category: Scheduler
Type: Feature Request
3

Hello,

I would like the Scheduler day view to scroll automatically to a defined hour, for example the start of the work day.

Unplanned
Last Updated: 18 Oct 2022 11:28 by Benjamin
Created by: Benjamin
Comments: 7
Category: Scheduler
Type: Feature Request
3

Hi there

The scheduler is an amazing component for Blazor, however with our designs we'd need to hijack one of the existing views and make a custom page from that which we don't really want to do if we can get this feature.

Custom Views would work just like any other view, but expose a <ViewTemplate> tag that would allow us to create our own custom view that can leverage on the power of the scheduler without doing anything hacky to achieve the same effect.

For instance a code example can be like:

<SchedulerViews>
    <SchedulerMonthView />
    <SchedulerDayView StartTime="@CurrentDate"></SchedulerDayView>
    <SchedulerCustomView>
        <ViewTemplate Context="view">
            <h1>This is a custom view for the @view.month</h1>
            <TelerikCalendar Date="@item.date" />
        </ViewTemplate>
    </SchedulerCustomView>
</SchedulerViews>

Unplanned
Last Updated: 19 Sep 2022 16:25 by Support ATT
Created by: Support ATT
Comments: 0
Category: Scheduler
Type: Feature Request
2
Please add support for grouping by date similar to https://demos.telerik.com/kendo-ui/scheduler/date-grouping.
Unplanned
Last Updated: 22 Aug 2022 14:22 by Shannon
Created by: Shannon
Comments: 0
Category: Scheduler
Type: Feature Request
2
I'd like to have the ability to export the Scheduler appointments to iCalendar.
Unplanned
Last Updated: 12 Aug 2022 06:01 by Holger
Created by: Holger
Comments: 0
Category: Scheduler
Type: Bug Report
1

I have created an event series with the following RecurrenceRule:

RecurrenceRule = "FREQ=DAILY;BYDAY=MO,TU,WE,TH,FR"

However, it looks like the collection of days is not taken into consideration and the events are created for every day of the week as if I have only set:

RecurrenceRule = "FREQ=DAILY"

---

ADMIN EDIT

---

A possible workaround for the time being is to use  "FREQ=WEEKLY" and extend the occurrence to the desired days of the week. For example, targeting the "Morning run" appointment: https://blazorrepl.telerik.com/cQuiFGOK01nSotIT28.

Unplanned
Last Updated: 04 Aug 2022 08:48 by Holger
Created by: Holger
Comments: 0
Category: Scheduler
Type: Bug Report
2

Hi,

I have a recurrent event with the following dates:

"Start": "2022-08-01T07:00:00",
"End": "2022-08-01T08:00:00",
"RecurrenceRule": "FREQ=DAILY;UNTIL=2022-08-04T05:00:00"

https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10 says:

The UNTIL rule part defines a DATE or DATE-TIME value that bounds the recurrence rule in an inclusive manner.  If the value  specified by UNTIL is synchronized with the specified recurrence, this DATE or DATE-TIME becomes the last instance of the recurrence.  The value of the UNTIL rule part MUST have the same value type as the "DTSTART" property

I generated the events with Thunderbird, synchronized to the caldav-Server and read it from there. 

In the Telerik Scheduler I got only 3 occurences of the event: from the 1st to the 3rd.

In Thunderbird I got 4. From the 1st to the 4th. According with the RFC, Thunderbird is right :-) 

----------------------- ADMIN EDIT -----------------------

The recurrence generation currently considers the time in the recurring rules. To workaround the issue, you should manually change the until parameter to contain the maximum possible hour, minute and second for the day. Here is an example:

 

// item is your appointment item

var rule = RecurrenceRule.Parse(item.RecurrenceRule); if(rule.Until.HasValue) { var untilDate = rule.Until.Value; rule.Until = new DateTime(untilDate.Year, untilDate.Month, untilDate.Day, 23, 59, 59); } item.RecurrenceRule = rule.ToString();

 

 

--------------------------------------------------------------------

Unplanned
Last Updated: 17 Oct 2023 01:08 by Paul

I am really looking to try to do something like this in Blazor: ASP.NET MVC Scheduler Hierarchical Grouping Demo | Telerik UI for ASP.NET MVC

In MVC, this feature is implemented with the dataParentValueField.

Unplanned
Last Updated: 29 May 2023 09:41 by ADMIN

Our current implementation of the JQuery version of the scheduler uses custom views. I understand that custom views are going to be a difficult if not impossible task for Blazor rendering. The goal for our custom view is simple, we override the calculateDateRange function to supply an ordered date range that allows us to have a "TimelineTwoWorkWeekView", thus showing Monday-Friday then Monday-Friday again. We also had a use case that was never implemented but would be addressed the same way; to show all "mondays this month".

Therefore, the request is a "TimelineCollectionView", displaying a timeline view for dates specified in an IEnumerable<DateTime>.

Any other ideas or feedback would be greatly appreciated.

Unplanned
Last Updated: 17 Mar 2022 13:11 by Bjarne
Created by: Bjarne
Comments: 0
Category: Scheduler
Type: Feature Request
2
Once the multiple appointments selection is available, I want to be able to delete all selected appointments at once.
Unplanned
Last Updated: 17 Mar 2022 13:08 by Bjarne
Created by: Bjarne
Comments: 0
Category: Scheduler
Type: Feature Request
3

Currently, it is possible to select only one appointment at a time. I want to be able to select more than one appointment to perform some operation with all selected ones - for example, delete them.

Unplanned
Last Updated: 17 Feb 2022 12:09 by Lewis
Created by: Lewis
Comments: 0
Category: Scheduler
Type: Feature Request
3
Currently, it is not possible to assign multiple resource values/instances to a single appointment - for example, a meeting that should have several attendees. Please add such functionality similar to https://demos.telerik.com/aspnet-mvc/scheduler/resources.
Unplanned
Last Updated: 07 Jul 2023 09:50 by Mathias
Created by: Sherrie
Comments: 2
Category: Scheduler
Type: Feature Request
11

Is there a way to customize the resource grouping's header (i.e. Alex, Bob, Charlie)? I understand it displays the text from the Resource, but I would like to be able to customize the HTML displayed so that I can add a tooltip. Would you have a suggestion as to how I can accomplish this?

Kendo Group Header Template

Unplanned
Last Updated: 24 May 2024 15:09 by ADMIN
Created by: Roland
Comments: 3
Category: Scheduler
Type: Feature Request
6

I want to be able to limit the Scheduler to a minimum and/or maximum date.

---

ADMIN EDIT

---

This request could be revised in two separate tracks:

  • Min and Max parameters on component level regardless of the selected view
  • Min and Max parameters for the separate views ( Day, Week, Month etc.)

Please share your thoughts on how you'd expect it to be implemented.

Unplanned
Last Updated: 05 Aug 2022 07:38 by ADMIN
I want to have the month view Weekday title to three letters - When a phone is in portrait mode full day names are too long for the columns so look awful. 
Unplanned
Last Updated: 27 Jan 2022 10:06 by ADMIN

Currently, creating an appointment is made by double clicking on a slot. The case of single clicking to create an appointment is already in another request.

If you take the example of Google agenda, you can create an appointment by selecting directly the dates by sweeping with one long single click.

Here would be the request:

An event similar to SchedulerEditEventArgs (containing Start, End, IsAllDay, IsNew ; IsCancelled: to be able to have a custom edit form) that would be triggered with one long single click selecting the dates/hours slots of the appointment.

---

ADMIN EDIT

---

Although the discussion targets different functionality, we are keeping the current request open as we consider it valid to ensure better UX for appointment creation on mobile devices and we would like to see how the demand for that goes.

Unplanned
Last Updated: 11 Nov 2021 19:25 by Ron
Created by: Ron
Comments: 0
Category: Scheduler
Type: Feature Request
4
I want to be able to control the start and end of the week. For example, display week view with only Monday to Friday.
Unplanned
Last Updated: 06 Nov 2021 12:47 by ADMIN
Created by: Giannis
Comments: 0
Category: Scheduler
Type: Feature Request
6

I would like an indicator of the current time in the scheduler that updates itself (as often as every minute) without the need to reload the page. Like in the Reach suite: https://www.telerik.com/kendo-react-ui/components/scheduler/views/day/#toc-current-time-marker

---

ADMIN EDIT

You may find interesting this related request for more precise appointment rendering: https://feedback.telerik.com/blazor/1451797-more-precise-representation-of-start-end-times-on-scheduler-exact-time-rendering. If so, Vote for it and Follow it as well.

---

Unplanned
Last Updated: 25 Oct 2021 13:16 by ADMIN
Created by: n/a
Comments: 0
Category: Scheduler
Type: Feature Request
6
Add State feature so it will be possible to control add/insert/update operations in the Scheduler.