Hi there,
in Day View of DayPilot.Scheduler
, when having snapToGrid = true
, using selectTimeRange()
has an unintended effect.
E.g. doing:
DayPilot.Scheduler.selectTimeRange("2024-06-05T10:00:00", "2024-06-05T11:00:00", “xxx”, false);
With a 15-min. grid, the selection will jump from 10.00am to 11.15am. The snapToGrid seems to increment the selection. Our current workaround is removing one second from the times to select, e.g. 2024-06-05T10:59:59
.
Is this intended?