The linksLoadMethod property (string) specifies the HTTP method used by the DayPilot.Scheduler.links.load() method.
Declaration
DayPilot.Scheduler.linksLoadMethodPossible Values
"GET"- sends the request using HTTP GET."POST"- sends the request using HTTP POST.
Default Value
"GET"Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
linksLoadMethod: "POST",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
linksLoadMethod: "POST",
// ...
};React
<DayPilotScheduler
linksLoadMethod="POST"
{/* ... */}
/>Vue
<DayPilotScheduler
linksLoadMethod="POST"
<!-- ... -->
/>See Also
DayPilot.Scheduler.links.load()
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot