When the Scheduler is opened on iOS device in desktop mode it could not be scrolled easily, the scrolling is not smooth.
The scrolling in Scheduler component is not very smooth on iOS desktop mode.
The Scheduler Timeline viwes should scroll as expected on iOS devices in Desktop mode.
When the timezone of the machine and the timezone set in the Scheduler are in different days, the currentTimeMarker is not displayed in the Timeline view.
When the timezone of the machine and the timezone set in the Scheduler are in different days, the cusrrentTimeMarker is not displayed in the Timeline view.
The cusrrentTimeMarker should be displayed in all the views.
If you resize the DevTools pane after destroying the Scheduler, a "Cannot read properties of null (reading 'getKendoToolBar')" error is thrown.
Regression introduced with 2022.2.621
An error is thrown after resizing the pane.
No error should be thrown after resizing the pane.
If you configure a Scheduler's endTime (e.g. 16:15), and you have an event that ends past that endTime (e.g. 16:30), the event will not be properly visible.
The Tennis Practice event is only briefly visible
The event should be visible respecting the view's endTime
Hi,
Currently the Scheduler has no option to limit the axis of the drag and drop.
Kendo.Draggable already has this feature, however setting it in the scheduler has no effect.
https://docs.telerik.com/kendo-ui/api/javascript/ui/draggable/configuration/axis
in this dojo i have a little workaround to achieve this behavior.
https://dojo.telerik.com/oWuvUsIt
If an all-day event is resized to multiple days and then the user tries to resize the event back to one day, the event is not always resized.
The issue is occasionally reproducible and does not occur for all all-day events. The event is resized back only if the user tries to drag the mouse down and then resize. Here is a screencast - https://somup.com/cZeX6QpRlX.
It should be possible to resize back the all-day events back to one-day duration without moving the mouse down.
If the snap
option is set at runtime the drag hint of the events starts having wrong height.
After changing the snap option at runtime as a result the drag hint height is correct when the snap is set to false, but it has wrong height when the snap is enabled.
The drag hint should have the same height as the dragged event.
move: function(e){
var dragHintEl = $('.k-event-drag-hint')
var dataUid = $('.k-event-drag-hint').attr('data-uid')
var event = $('.k-event[data-uid="'+ dataUid +'"]:not(.k-event-drag-hint)')
var height = $(event).height()
$(dragHintEl).height(height)
},
Dojo - https://dojo.telerik.com/@NeliK/aZArEdof
If a Scheduler event's start time is set differently than :00 or :30, the event will be dropped in an incorrect slot when snap is enabled. The start time in the hint is also incorrect.
The event will be placed at 2:19 AM instead of at 2:00 AM
The event should be placed at the dropped slot.
Describe the bug
When there is an event that lasts multiple days, but is not an all-day event the title and the up arrow overlap, thus it makes the reading of the title harder.
To reproduce
Open the Dojo - https://dojo.telerik.com/@NeliK/IruYeGEc
Expected behavior
The arrow and the title should be rendered with some margin
Workaround
.k-event-template{
margin-top: 8px !important;
}
Affected package (please remove the unneeded items)
Affected suites (please remove the unneeded items)
Affected browsers (please remove the unneeded items)
When the user tries to set a repeat rule for an event, the spinners for the NumericTextBoxes are not displayed
The spinners are not displayed. Also, the calendar icon is not displayed.
The following classes should be applied only to the parent element: k-recur-interval, k-recur-count, k-recur-until
The spinners and the calendar icon should be visible
edit: function(e){
$('[name="recurrenceRule"] .k-button-group-stretched button').click(function(){
$('.k-recur-interval.k-input-inner').removeClass('k-recur-interval')
$('.k-recur-count.k-input-inner').removeClass('k-recur-count')
$('.k-recur-until.k-input-inner').removeClass('k-recur-until')
})
},
Dojo - https://dojo.telerik.com/@NeliK/iVExeNek