The rows.update() method updates the specified JavaScript Scheduler row.
Declaration
DayPilot.Scheduler.rows.update(row);Parameters
row(DayPilot.Row) - Scheduler row to update
Notes
You can get the DayPilot.Row object using rows.find().
After changing DayPilot.Row.data, which holds the source data object, call rows.update() to apply the changes.
Example
const row = dp.rows.find("A");
row.data.name = "Room A1";
dp.rows.update(row);See Also
DayPilot.Scheduler.rows.find()
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot