The rowsLoadMethod property (string) specifies the HTTP request method used by rows.load() method.
Declaration
DayPilot.Scheduler.rowsLoadMethodPossible Values
"GET"- sends the resource-loading request using HTTP GET."POST"- sends the resource-loading request using HTTP POST.
Default Value
"GET"Notes
This property controls the AJAX request method used when DayPilot.Scheduler.rows.load() loads resource data from a URL.
Examples
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"
<!-- ... -->
/>See Also
DayPilot.Scheduler.rows.load()
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot