The events.edit() method activates the inline editing mode for the specified event in the JavaScript Scheduler component.
DayPilot.Scheduler.events.edit(e);
e
- DayPilot.Event object
const e = dp.events.find(123); // find the event object using its ID
dp.events.edit(e);