The events.edit() method activates the inline editing mode for the specified event in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.events.edit(e)Parameters
e(DayPilot.Event) - object to edit
Notes
Pass a DayPilot.Event instance from the current Scheduler, for example the result of DayPilot.Scheduler.events.find().
Example
const e = dp.events.find(123); // find the event object using its ID
dp.events.edit(e);See Also
Inline Event Editing [doc.daypilot.org]
DayPilot.Scheduler.events.find()
DayPilot.Scheduler.eventEditHandling
DayPilot.Scheduler.onEventEdit
DayPilot.Scheduler.onEventEdited
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot