The rows.edit() method activates inline editing of a row header cell in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.rows.edit(row[, x])Parameters
row(DayPilot.Row) - target row to editx(number) - row header column index when row header columns are enabled; if not specified, the default column will be used (available since 2023.1.5513)
Notes
You can get the DayPilot.Row object using the DayPilot.Scheduler.rows.find() method.
Example
const row = dp.rows.find("A");
dp.rows.edit(row);See Also
DayPilot.Scheduler.rows.find()
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot