The eventsLoadMethod property (string) specifies the HTTP method used by events.load().
DayPilot.Scheduler.eventsLoadMethod"GET" - loads event data using an HTTP GET request.
"POST" - loads event data using an HTTP POST request.
"GET"Use this property to match the request method expected by the endpoint called by events.load().
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventsLoadMethod: "POST",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventsLoadMethod: "POST",
// ...
};React
<DayPilotScheduler
eventsLoadMethod="POST"
{/* ... */}
/>Vue
<DayPilotScheduler
eventsLoadMethod="POST"
<!-- ... -->
/>