Unplanned
Last Updated: 17 Jun 2019 05:46 by ADMIN
Created by: Mathieu
Comments: 1
Category: Scheduler
Type: Feature Request
3

Hello,

We want to "freeze" the first line of scheduler for scrolling.

It's possible? If don't, have you a workaround to make that?

Thanks

Mathieu

Unplanned
Last Updated: 20 Jan 2020 09:47 by ADMIN
Created by: Linda Soukup
Comments: 1
Category: Scheduler
Type: Feature Request
2

Add an option to configure a separate custom editor to be used when the Scheduler's mobile mode is enabled. This would make possible using two different templates at the same time, for example:

.Editable(editable => {
	editable.TemplateName("CustomEditorTemplate").MobileTemplateName("CustomEditorMobileTemplate");
})

 

Unplanned
Last Updated: 01 Apr 2021 05:11 by ADMIN

Hello,

I think the new-event dialog is slow to open, when there are hundreds of events, because a placeholder event is added to the calendar before the dialog is shown. This causes re-rendering of all events, adding a noticeable delay.

Initial setup for reproduction:

  1. Clone this example
  2. Modify SchedulerCrudOperations.cshtml.cs to provide 400 events, as follows:
        public void OnGet()
        {
            if (meetings == null)
            {
                meetings = new List<MeetingViewModel>();
                Enumerable.Range(1, 200).ToList().ForEach(x => meetings.Add(new MeetingViewModel()
                {
                    MeetingID = x,
                    Title = "Daily Event " + x,
                    Start = DateTime.Now.AddHours(x * 2),
                    End = DateTime.Now.AddHours(x * 3),
                    Description = "Description for event " + x,
                    Attendees = new List<int>() { (x % 3) + 1 },
                    RecurrenceRule = "FREQ=DAILY;INTERVAL=1"
                }));

                Enumerable.Range(1, 200).ToList().ForEach(x => meetings.Add(new MeetingViewModel()
                {
                    MeetingID = x,
                    Title = "Weekly Event " + x,
                    Start = DateTime.Now.AddHours(x * 2),
                    End = DateTime.Now.AddHours(x * 3),
                    Description = "Description for event " + x,
                    Attendees = new List<int>() { (x % 3) + 1 },
                    RecurrenceRule = "FREQ=WEEKLY;INTERVAL=1"
                }));

            }
        }

Navigate to the scheduler page

  1. Select the calendar's day-view
  2. Double click somewhere to add a new event
  3. Observe a 500+ millisecond delay before the new-event dialog appears
Unplanned
Last Updated: 02 Jul 2021 18:07 by ADMIN
Created by: Christian Sandöy
Comments: 0
Category: Scheduler
Type: Feature Request
2

Hi Team,

I'd like to request for a built-in Monthly Agenda view to allow a larger view for the Kendo UI Scheduler.

Thank you!

Completed
Last Updated: 04 Feb 2021 14:47 by ADMIN
Release 2021.R1.SP.next

Bug report

Reproduction of the problem

Reproducible in the Vertical Grouping demo.

  1. Select the Timeline view.
  2. Add multiple (more than 11) events to a single time slot: screenshot.
  3. The slot resizes in height each time a new event is added, however, the more events are added the closer to the slot's bottom border they are pushed.

Current behavior

After adding 11 or more events, the last event starts overlapping the next resource group slot.

Expected/desired behavior

The slot should resize accordingly, based on the number of events shown in it. Events should not be displayed outside of the slot they belong to.

Environment

  • Kendo UI version: 2020.2.513
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 16 Feb 2021 08:55 by ADMIN

Improve the .FooterTemplate() to support inline templates and receive the widget instance as a parameter, but not the event data.


Completed
Last Updated: 30 Mar 2023 07:27 by ADMIN
Release R2.2023-Increment.2(26.Apr.2023)

Bug report

DataSource Wrappers do not expose a configuration property do create a kendo.data.SchedulerDataSource. This is needed to configure a shared DataSource between the Filter and the Scheduler

Reproduction of the problem

  1. Unlike jQuery the wrappers do not expose the configuration for a SchedulerDataSource

Expected/desired behavior

The wrapper should be able to integrate the Filter with Scheduler as referenced by the Filter's Documentation

TicketID:

1565222

Environment

  • Kendo UI version: 2022.2.510
  • Browser: [all]
Unplanned
Last Updated: 15 Dec 2022 18:09 by Ville
Expose a string overload for the DataSource configuration option in the SchedulerResourceBuilder in order to accept a DataSource id parameter.
Completed
Last Updated: 07 Nov 2023 09:38 by ADMIN
Release R1.2024-Increment.1(15.Nov.2023)
Created by: Frieder
Comments: 0
Category: Scheduler
Type: Bug Report
1

### Bug report

When the custom editor template of the Scheduler contains a label text with a special character, it is encoded automatically. If the encoding contains a hash literal (#), it throws a client-side error "Invalid template".

### Reproduction of the problem

1. Create a Scheduler with a custom editor template.

2. Add a label for a specified Model property by using the @(Html.LabelFor(model => model)) configuration.

3. Add a label text with a special character as per the example below.

<div class="k-edit-label">
    @(Html.LabelFor(model => model.Title, "Durchfüehrung"))
</div>

<div data-container-for="title" class="k-edit-field">
    @(Html.Kendo().TextBoxFor(model => model.Title)
        .HtmlAttributes(new  { data_bind = "value: title"})
      )
    <span data-for="title" class="k-invalid-msg"></span>
</div>

4. Try to add an event or edit an existing event. Open the browser console to review the error:

### Expected/desired behavior

The hash literals in the encoded strings should be escaped automatically.

### Environment

* **Telerik UI for ASP.NET Core version: 2023.2.718
* **Browser: [all]

Completed
Last Updated: 22 Jan 2024 11:04 by ADMIN

### Bug report

When the default action of the Navigate event is prevented, and the user selects a date through the built-in Calendar, the Scheduler navigates to the respective date/week, although the Navigate event is prevented.

### Reproduction of the problem

1. Create a Scheduler and enable the "selectable" option.

2. Handle the "navigate" event and prevent its default action.

3. Select a date through the Calendar.

4. The Scheduler navigates to the selected date/week.

A Dojo sample for reproduction: https://dojo.telerik.com/OnategOD

### Expected/desired behavior

The Navigate event must be prevented when calling the preventDefault() method.


### Environment

* **Kendo UI version: 2023.2.829
* **jQuery version: 1.12.4
* **Browser: [all]

Completed
Last Updated: 11 Dec 2023 07:41 by ADMIN
Created by: Olya
Comments: 0
Category: Scheduler
Type: Feature Request
1

The Kendo UI for jQuery Scheduler exposes toolbar.items.mobile option that allows you to define the desired tools in in adaptive rendering mode. Is it possible to implement the same option for the Scheduler Html and Tag Helper?

Unplanned
Last Updated: 19 Dec 2023 13:48 by ADMIN

Bug report

In the Scheduler's Adaptive Rendering mode when the Month view is selected and an event end spans more than a day and ends in 00:00:00 an additional element is rendered for the event.

Reproduction of the problem

  1. Run this Dojo
  2. Change the View to Week and notice that the event only spans 2 days

Expected/desired behavior

In the Month View of the Scheduler's when Adaptive Rendering is enabled the events should span the correct amount of days.

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all]
Unplanned
Last Updated: 20 Dec 2023 12:20 by Olya

Bug report

Scheduler Adaptive Rendering in Month View shows wrong year when the selected month is switched from December to January

Reproduction of the problem

  1. Run this Dojo
  2. Use the Next button to select the next month
    image

Current behavior

The year doesn't get update properly when the selected Month is switched from December to January

Expected/desired behavior

The correct year must be shown in the Scheduler's .k-scheduler-navigation element.

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all]
Unplanned
Last Updated: 27 Dec 2023 09:31 by Tom Salmon
Created by: Tom Salmon
Comments: 0
Category: Scheduler
Type: Feature Request
1
Currently, the Telerik UI for ASP.NET Core Scheduler does not expose the ability to set resource styles similar to how it can be done with the Telerik UI for ASP.NET AJAX control
Unplanned
Last Updated: 06 Feb 2024 06:42 by Chatrathisai
Created by: Chatrathisai
Comments: 0
Category: Scheduler
Type: Feature Request
1
Add the ability to add additional columns to the Scheduler by using built-in API configurations. Currently, the only alternative would be to create a custom view.
Planned
Last Updated: 06 Jun 2024 08:06 by ADMIN
Scheduled for 2024 Q3 (Aug)

Bug report

Toolbar.Items.Group.CustomTool() API of the Scheduler produces an invalid configuration.

Reproduction of the problem

  1. Open the following Telerik REPL.
  2. Try to add a Template component via the Toolbar.Custom.Items.Group.CustomTool() API configuration.
  3. Notice that the configuration produces invalid serialization.

To give more context, the Toolbar's buttonGroup items do not expose, nor should they expose a template configuration. The currently available options advocate that each of the buttons must apply options similar to that of the ToggleButton.

Thus, making the wrapper configuration not applicable. The following dojo verifies this - https://dojo.telerik.com/@alexander64836/ayedUsAh

Current behavior

Toolbar.Custom.Items.Group.CustomTool() API configuration of the Scheduler produces an invalid configuration which is not serialized accordingly.

Expected/desired behavior

Toolbar.Items.Group API configuration of the Scheduler should expose a CustomTool() API configuration for the ButtonGroups.

Workaround

The current workaround would be to declare the CustomTool via the Toolbar.Custom.Items.CustomTool() API configuration. And a ButtonGroup via the Template component:

@(Html.Kendo().Scheduler<Kendo.Mvc.Examples.Models.Scheduler.TaskViewModel>()
     .Name("scheduler")
     ...
     .Toolbar(t => t.Custom(c =>
         c.Items(itm => {
             itm.CustomTool(Html.Kendo().Template().AddComponent(c => c
                .ButtonGroup()
                 .Name("select-period")
                 .Items(t =>
                 {
                     t.Add().Text(string.Empty).Icon("chevron-up");
                     t.Add().Text(string.Empty).Icon("chevron-down");
                 })
             ));  
          })
       )
     )
)

The following Telerik REPL illustrates this approach.

Environment

  • Kendo UI version: 2023.2.514
  • Browser: [all]
Completed
Last Updated: 04 Dec 2023 11:19 by ADMIN
Created by: Sridhar
Comments: 1
Category: Scheduler
Type: Bug Report
0

Hello,

We are subscribing to the change event of scheduler on clicking any event/Slot , the functionality works fine with window machines.

In iPad the change event gets triggered on clicking  any part of scheduler. for instance when i click the show Full day text below it triggers the change event in iPad but not in windows.

Please let us know how to restrict change event to be triggered only when a slot/event is selected in iPad.

 

 

Thanks.

Declined
Last Updated: 28 May 2020 14:49 by ADMIN
Created by: Bruno
Comments: 1
Category: Scheduler
Type: Bug Report
0

the header display 5/21 for 21 may, but should be 21/5 for French culture

no translation for Export PDF : "Export to PDF" should be "Exporter en PDF" in french Translation

 

Show picture

 

 

Unplanned
Last Updated: 02 Jun 2020 17:14 by ADMIN
Created by: Mark
Comments: 0
Category: Scheduler
Type: Feature Request
0
Currently, there is no option to customize the appearance when there are no events in Scheduler for the displayed view. Allow Scheduler to define a no-data template to display custom messages when there are no events for the displayed time.
Declined
Last Updated: 18 Feb 2021 09:54 by ADMIN

Dear Telerik Team

I have recently found a bug in the asp.net core Scheduler.

 

 What I did (using this demo):

1. Created a daily event

2. Edited the second event (the current occurrence) and saved it

3. Tried to edit the second event again

The problem is now that the popup if I want to edit the current occurrence or series still showed up but it should not.

We had the same problem also on our asp.net core application.

 

Best Regards

Jan

1 2