Open Charles22219 opened 2 weeks ago
The issue might be related to how table cells are dragged in the browser. It seems that the entire cell is being dragged in the background which is visually seen in the Firefox browser. This led me to try the following workaround to stop the dragging of the td cell in the Scheduler:
.k-scheduler-table td {
user-select: none;
-webkit-user-drag: none;
pointer-events: auto;
}
Workaround example - https://stackblitz.com/edit/angular-jdaplq-myraup
@yanmariomenev this worked on my project. Thanks
*kendo-scheduler version: 16.2
Description
title. this causes the user to be blocked from selecting more slots since dragEvent finishes unexpectedly. This is only reproduced in Windows environment and tested on both Chrome and Firefox.
Steps To Reproduce
this can be reproduced in the documentation itself in custom callback. but this can also be observed while using the built-in directive
*note this is intermittent but happens often. the steps assumes the issue happens
Screenshots or video
Chrome:
https://github.com/user-attachments/assets/56c6678f-3cd1-4ce7-8995-889dcc664550
Firefox:
https://github.com/user-attachments/assets/7b1a062e-ed89-40a6-802b-431e3a54e124
Actual Behavior
slotDragEnd sometimes emits right after slotDragStart even though i have not let go of left mouse click
Expected Behavior
slotDragEnd should not be emitted till i let go of the left mouse click
Browser
All
Browser version
latest
OS type
Windows
OS version
No response
Last working version of the Kendo UI for Angular package (if regression).
No response