Completed
Last Updated: 18 Apr 2024 13:19 by ADMIN
Release 2024 Q2 (May)
The month view only shows two events per day. I would like to be able to show more, either by increasing the height of the cell or by creating columns within the cell.
Completed
Last Updated: 11 Oct 2022 10:54 by ADMIN
Release 3.6.0 (14 Sep 2022) (R3 2022)
Created by: Grant
Comments: 17
Category: Scheduler
Type: Feature Request
44
I would like to be able to drag and drop items from a list of custom items into the calendar and create an appointment out of it.
Completed
Last Updated: 09 Sep 2021 13:21 by ADMIN
Release 2.27.0
Created by: Pascal
Comments: 3
Category: Scheduler
Type: Feature Request
27

Hi fellows,

 

I just wanted to know, if it's possible to use the timeline view in blazor as well (compared to asp.net core?).

And if so, how can  I do it?

If not: are there any plans in the pipe for activating this feature?

 

Best regards

 

Pascal 

Completed
Last Updated: 07 Oct 2020 08:49 by ADMIN
Release 2.18.0
Created by: Kelly
Comments: 0
Category: Scheduler
Type: Feature Request
23

I would like to be able to customize the way appointments appear in the calendar. For instance, to have aircraft identifier, arrival and departure airport codes and depart times. 

As an example they could work like: https://demos.telerik.com/kendo-ui/scheduler/templates.

Completed
Last Updated: 17 Jun 2021 13:27 by ADMIN
Release 2.25.0
Created by: Dan
Comments: 4
Category: Scheduler
Type: Feature Request
18

Is it possible to do group scheduling similar to what is done https://demos.telerik.com/aspnet-mvc/scheduler/resources-grouping-horizontal.

 

If not how do i include kendo in a serverside blazor application?

 

Cheers

 

Ian

Completed
Last Updated: 08 Nov 2022 09:14 by ADMIN
Release 3.7.0 (09 Nov 2022)
Created by: Roberto
Comments: 4
Category: Scheduler
Type: Feature Request
17

I would like to alter some special slots in the scheduler like in WPF. Sample images is attached.

The slot should be customizable to define custom size and template.

*** Thread created by admin on customer behalf ***

Completed
Last Updated: 16 Oct 2023 22:27 by Paul
Release 3.7.0 (09 Nov 2022)
I need some help with my question about how to know what grouping resource was clicked on. I'm using a custom editing screen that is triggered when the OnEdit event fires. I can't figure out how to get resource ID when the event fires. How do I get the resource group information on an event that fires with IsNew=true?
Completed
Last Updated: 02 Aug 2021 11:39 by ADMIN
Release 2.26.0
Created by: Avrohom Yisroel
Comments: 7
Category: Scheduler
Type: Feature Request
13

I want to change what is shown in the scheduler headers, depending on my current culture, and on the view (different things for a week view and for a day view, for example).

 

Completed
Last Updated: 07 Nov 2022 12:58 by ADMIN
Release 3.7.0 (09 Nov 2022)
Created by: Eric
Comments: 0
Category: Scheduler
Type: Feature Request
12
I would like to have an OnRenderCell event for the Scheduler, so I can conditionally add color and text to the cells.
Completed
Last Updated: 04 Apr 2024 13:44 by ADMIN
Release 2024 Q2 (May)
When creating an appointment, the Start and End editors should display the date (and time) of the slot the user clicked on.
Completed
Last Updated: 26 Jul 2021 14:10 by ADMIN
Release 2.26.0
I want to make sure my users don't delete appointments by accident
Completed
Last Updated: 10 Apr 2020 06:49 by ADMIN
Release 2.11.0
Created by: Sylvain
Comments: 5
Category: Scheduler
Type: Feature Request
5

Hi, 

 

is there a way to use the scheduler to display a month ?

Something similar to this https://docs.dhtmlx.com/scheduler/how_to_start.html

 

 

Completed
Last Updated: 09 Sep 2021 08:37 by ADMIN
Created by: Al
Comments: 2
Category: Scheduler
Type: Feature Request
5
I would like to click on a schedule item and be able to open a linked page or item. For instance if the schedule item Title is a File # I would like to be able to click on that item and go to a file # details page. Is that possible? 
Completed
Last Updated: 17 Dec 2021 10:59 by ADMIN
Release 3.0.0
Created by: Edwin
Comments: 4
Category: Scheduler
Type: Bug Report
3

I have located an issue with the scheduler in Firefox

It currently is not possible to edit an appointment in Firefox when visiting the following demo page:

https://demos.telerik.com/blazor-ui/scheduler/appointment-editing

Edge and Chrome work as expected.

I noticed this issue in my local project and referred to the demo's to see if I was doing something stupid :-).

I am assuming that the demo's are running in .net 5 and that the demo's are blazor server applications.

Completed
Last Updated: 04 Jan 2024 07:46 by ADMIN
Release 5.1.0 (31 Jan 2024) (R1 2024)

In a Scheduler with vertical grouping, I am dynamically changing the displayed resources during runtime. It looks like displaying a longer resource name breaks the rendering.

The Scheduler does not recalculate the cell width when changing the resource list.

---

ADMIN EDIT

---

Possible workarounds:

  1. Force component rerendering when changing the resources list - dispose it and initialize it again using a flag and conditional rendering. Example: https://blazorrepl.telerik.com/wwuDGLvE42TUf5En09.

  2. Use CSS to set appropriate min-width to the resource cell, so it is wide enough to fit the longest name of the available resources. Example: https://blazorrepl.telerik.com/wmaDGhFY37t5pFj757.
Completed
Last Updated: 17 Oct 2022 06:34 by ADMIN
Release 3.7.0 (09 Nov 2022)

The Scheduler seems to be showing the previous month in the header.

Completed
Last Updated: 12 Oct 2022 07:26 by ADMIN
Release 3.7.0 (09 Nov 2022)

<TelerikScheduler AllowCreate="@Editing" AllowDelete="@Editing" AllowUpdate="@Editing" OnDelete="@AppointmentDelete" OnEdit="@AppointmentEdit" OnUpdate="AppointmentUpdate"  Data=…

The above line breaks only with AllowUpdate.

I default Editing false, then toggle it true in the hosting component and do a InvokeAsync(StateHasChanged). 

The result is I can create and delete, but while the appointment hover cursor changes to the hand or arrows and I can see the handlebars to resize the appointment, I'm not able to update the appointment until I switch the SchedulerView. After switching SchedulerView updating works as expected.

Completed
Last Updated: 10 Sep 2021 12:58 by ADMIN
Release 2.27.0
Created by: Rob
Comments: 3
Category: Scheduler
Type: Feature Request
2

A context menu event similar to the grid context menu would be useful for editing functions like cut/copy and paste.

---

ADMIN EDIT

You can use the item template to integrate context menus in the scheduler: https://github.com/telerik/blazor-ui/tree/master/scheduler/appointment-context-menu. This also allows you a lot of other customization options like adding tooltips and changing the appearance/information users see at first glance.

For a context menu on the slots - probably this item will expose a template for them so the same approach would apply.

---

Completed
Last Updated: 01 Oct 2021 16:04 by ADMIN
Created by: Sherrie
Comments: 1
Category: Scheduler
Type: Feature Request
2
I'd like to be able to filter the Scheduler appointments. For example, in a Scheduler that uses regular or grouped resources I want to filter the appointments by the resources they are associated to.
Completed
Last Updated: 20 Mar 2023 15:26 by ADMIN
Release 4.2.0 (26/04/2023)
Created by: n/a
Comments: 0
Category: Scheduler
Type: Bug Report
2
By design, the appointments should be resized and repositioned upon browser resize. As of UI for Blazor 3.7., the appointments are not properly scaled upon browser resize.
1 2