Completed
Last Updated: 10 Nov 2020 14:18 by ADMIN
Release 2020.R3.SP.next
Created by: Joshua
Comments: 0
Category: Scheduler
Type: Bug Report
0

Bug report

When creating a new recurring event in the Scheduler, the recurrenceRule does not contain WKST parameter (the first day of the week in the Scheduler). If you edit an existing recurring event, the WKST value is added to the recurrenceRule.

Reproduction of the problem

  1. Open a Scheduler demo - https://demos.telerik.com/kendo-ui/scheduler/index.
  2. Open the Network tab and create a new recurring event. The WKST value is missing.
  3. Edit the same event - the WKST value will be added to the recurrenceRule.

Current behavior

The WKST value is not added to the recurrenceRule when creating a new recurring event.

Expected/desired behavior

The WKST value should be added when creating a recurring event.

Environment

  • Kendo UI version: 2020.2.617
  • Browser: [all]
Completed
Last Updated: 12 Jan 2024 09:35 by ADMIN
Release R2.2023-Increment.1(15.Mar.2023)

When no height is set to the Scheduler the grouping does not expand in height to the rendered month views. 

Actual: https://dojo.telerik.com/UhoxowEh

Expected: https://dojo.telerik.com/UPiGosik

Completed
Last Updated: 15 Oct 2020 07:17 by ADMIN
Release 2020.R3.SP.next

Bug report

The Scheduler configured with remote dataSource, vertical grouping and with autoBind: false, throws an error "Cannot read property 'firstChild' of undefined" and the Scheduler layout is not rendered. The behavior is a regression introduced with Kendo UI v 2020.1.114

Reproduction of the problem

  1. Run this dojo

Expected/desired behavior

No error should be thrown with the above configuration.

Environment

  • Kendo UI version: 2020.2.513
  • Browser: [all]
Completed
Last Updated: 19 May 2023 09:25 by ADMIN
Release R2.2023-Increment.3(7.June.2023)

Bug report

Scheduler events in TimeLine view are displayed incorrectly when they start/end at the same time.

Reproduction of the problem

Run this dojo

Current behavior

Notice that Event 2 is displayed below Event 1, even though they do not overlap. Removing Event 3 results in Event 1 and 2 being rendered next to one another.

Expected/desired behavior

Event 2 should be displayed next to Event 1, but not below, as they do not overlap

Environment

  • Kendo UI version: 2020.2.513
  • Browser: [all]
Completed
Last Updated: 06 May 2020 14:23 by ADMIN

Hi there, 

 

We are currently in the process of developing a booking/rota system utilising the latest build of the Kendo UI JQuery library and during internal testing we've spotted a bug in the creation of recurrence events within the scheduler control whereby "weekly" recurrences are created with numerous "gaps" in the scheduled events.   

 

To re-create this is quite simple,

1. Create a page containing a Kendo Scheduler control and configure pretty much with defaults (but allowing for the creation of weekly recurrent events).

2. Navigate to a specific month - the one we've been using to reproduce is June 2020.  (Don't think it matters which scheduler view you use).

3. Create a new event and set the recurrence rule to be:

  • Weekly
  • Every Mon, Tue, Wed, Thu, Fri
  • Start on 1st June 2020
  • End on 30th June 2020

4. Save the event.

You should see that most of the events are created, however for all but the first week in the recurrence the events that should be created on the Mondays and Tuesdays are missing.

I've done some digging around within the development console across a few different current browsers, and it looks to be a bug in the SchedulerDataSource "expand" method.   If you add an event with a recurrence rule specified as follows:

FREQ=WEEKLY;UNTIL=20200630T235959Z;BYDAY=MO,TU,WE,TH,FR

and then call the "expand" method on the data-source to split this into multiple events, you'll see that you actually end up with 14 events returned, rather than the correct 20.

This functionality is fairly critical to our current project, so would appreciate any feedback/response as soon as possible please.   Happy to provide further explanatory notes etc...if needed.

 

Many thanks

 

Jonny

 

 

 

Completed
Last Updated: 13 Jan 2020 09:16 by ADMIN
Release R1 2020
Created by: Narendra
Comments: 3
Category: Scheduler
Type: Bug Report
0

hello,

 

we recently upgraded the kendo from 2018 r1 to latest release. looks like there is a bug in the scheduler. With the server filtering and server operation true, I am unable to add Event(before upgrade it's fine).

check the dojo https://dojo.telerik.com/EhaXemiz 

 

can you please look into it.

 

Thanks,

Narendra

Completed
Last Updated: 10 Oct 2019 14:42 by ADMIN
Release 2019.R3.SP.next
Created by: Chinmaya
Comments: 0
Category: Scheduler
Type: Bug Report
0

Bug report

Scheduler cannot be scrolled in iOS 13 with Chrome

Reproduction of the problem

The issue can be reproduces in the Demos with the Chrome browser.

Current behavior

Scheduler content area cannot be scrolled.

Expected/desired behavior

Scheduler content area should be scrollable.

Environment

  • Kendo UI version: 2019.3.917
  • Browser: [all]
Completed
Last Updated: 25 Jan 2021 09:57 by ADMIN
Release 2021.R1.SP.next
Created by: Brightstar
Comments: 3
Category: Scheduler
Type: Bug Report
3

According to the documentation for Scheduler.select() this method should "Gets or sets the events (or slots) which are selected." But if I pass in an array of multiple uid elements it only selects the last item in the array.

Code

jsbin example: https://jsbin.com/nirisakavo/1/edit?html,js,output

Really just added a function to select all:

function SelectAll() {
  var scheduler = $("#scheduler").data("kendoScheduler");
  var allEvents = scheduler.data().map(function(val, i) { return val.uid; });
  scheduler.select(allEvents);
}

Repro

Click the 'Select All' button.

Expected: Selects all events.

Actual: Selects only last event.

 

Completed
Last Updated: 03 Jun 2019 13:50 by ADMIN
Release 2019.R2.SP.Next
Created by: Konstantin
Comments: 0
Category: Scheduler
Type: Bug Report
0

Bug report

The create button should be available only when editable is enabled.

Reproduction of the problem

https://dojo.telerik.com/itUCAdeK

Workaround

https://dojo.telerik.com/IMAWIZeV

1 2