DayPilot.Scheduler.rows.remove

 The rows.remove() method removes the specified JavaScript Scheduler row.

Declaration

DayPilot.Scheduler.rows.update(row);

Parameters

  • row (DayPilot.Row) - the row to be updated; in addition to a DayPilot.Row object, it also accepts the row id (string | number)

Notes

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

Example

const row = scheduler.rows.find("A");
scheduler.rows.remove(row);