Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hello,
I have the following problem. In both the TimelineDay view and the TimelineWeek view drag and drop and resize do not work properly. If you are in one of the two states with an appointment the times of the appointment do not match the cells of the time slots. With the default setting of an interval size of 30 minutes the difference seems to be one interval at a time. This phenomenon can be seen in your documentation:
https://ej2.syncfusion.com/javascript/documentation/schedule/resources/#timeline-resource-view
With reduction of the interval size:
dragStart: function(args)
{
args.interval = 1;
},
resizeStart: function(args)
{
args.interval = 1;
}
the interval differences become larger. Thus one is forced to pay attention to the time of the appointment to be changed and cannot use the upper times of the cells for orientation. This leads to a bad user experience.
Regards,
Adrien