The rowsLoadMethod property (string) specifies the HTTP request method used by rows.load() method.
DayPilot.Scheduler.rowsLoadMethod"GET" - sends the resource-loading request using HTTP GET.
"POST" - sends the resource-loading request using HTTP POST.
"GET"This property controls the AJAX request method used when DayPilot.Scheduler.rows.load() loads resource data from a URL.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowsLoadMethod: "POST",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowsLoadMethod: "POST",
// ...
};React
<DayPilotScheduler
rowsLoadMethod="POST"
{/* ... */}
/>Vue
<DayPilotScheduler
rowsLoadMethod="POST"
<!-- ... -->
/>