DayPilot.Scheduler.rows.edit

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) - the row to be updated
  • x (number) - column index (if row header columns are enabled); if not specified, will be used (available since 2023.1.5513)

Notes

You can get the DayPilot.Row object using rows.find() method.

Example

const row = dp.rows.find("A");
dp.rows.edit(row);