Hi,
we currently use the following code to detect if the start or end of an event was changed (important for our business logic).
var startTimeChanged = args.e.part.start.value != args.newStart.value;
var endTimeChanged = args.e.part.end.value != args.newEnd.value;
Is there any way we can detect it without doing a date compare? When we are using the DayPilot Scheduler in week-mode (cellDuration = 1440 + groupBy: "Week") somehow the startdate of the event gets changed even though we only are extending from the right side (changing the enddate).
Since we are using the resize "bars" on the left/right of an event, it should easily be possible to detect which one was handled?
Unless this is a bug and should/could easily be fixed?
Looking forward to your reply!