The rows.load() method loads resource data from the specified URL using an AJAX call.
DayPilot.Scheduler.rows.load(url[, success[, error]])url (string) - JSON endpoint URL
success (function) - optional callback invoked after the resources have been loaded
error (function) - optional callback invoked if the request fails
The HTTP method (GET/POST) is specified using the rowsLoadMethod property.
dp.rows.load("/api/resources", (args) => {
dp.message("Resources loaded");
});