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 to edit
Pass a DayPilot.Event instance from the current Scheduler, for example the result of DayPilot.Scheduler.events.find().
const e = dp.events.find(123); // find the event object using its ID
dp.events.edit(e);Inline Event Editing [doc.daypilot.org]
DayPilot.Scheduler.events.find()
DayPilot.Scheduler.eventEditHandling
DayPilot.Scheduler.onEventEdit