telerik / kendo-ui-core

An HTML5, jQuery-based widget library for building modern web apps.
http://www.telerik.com/kendo-ui
Other
2.54k stars 1.91k forks source link

Missing recurring Scheduler events in the beginning of a view #4006

Closed nelito987 closed 6 years ago

nelito987 commented 6 years ago

Bug report

Recurring Scheduler events are not rendered in the beginning of a view. There are several scenarios for reproducing the issue. It is reproducible with daily, hourly, weekly recurrence, probably other rules as well.

Reproduction of the problem - DAILY recurrence:

  1. Open the following Dojo
  2. Go through each view and press Prev/Next arrows to switch dates.

Current behavior

Reproduction of the problem - HOURLY recurrence:

  1. Open the following Dojo
  2. Go through each view and press Prev/Next arrows to switch dates.

Current behavior

Expected/desired behavior

The entire event, which started from the previous day/week/month accordingly, should be rendered.

Environment

serhiy-koza commented 6 years ago

Definitely Your Team will want to make changes in .ts files, but as long as they are unfortunately not delivered, I think its not a problem to find an appropriate section by using following: in the kendo.all.js , row 95057, please change: from this: useEventStart = freqName === 'yearly' || freqName === 'monthly' || freqName === 'weekly'; to this: useEventStart = freqName === 'yearly' || freqName === 'monthly' || freqName === 'weekly' || freqName === 'daily';

Kind regards,

Serhiy CollabFlex Software