DayPilot.Scheduler.rows.update

The rows.update() method updates the specified JavaScript Scheduler row.

Declaration

DayPilot.Scheduler.rows.update(row);

Parameters

Notes

You can get the DayPilot.Row object using rows.find() method. After changing DayPilot.Row.data (the source data object), call rows.update() to apply the changes.

Example

var row = dp.rows.find("A");
row.data.name = "Room A1";
dp.rows.update(row);