The linksLoadMethod property (string) specifies the HTTP method used by the DayPilot.Scheduler.links.load() method.
DayPilot.Scheduler.linksLoadMethod"GET" - sends the request using HTTP GET.
"POST" - sends the request using HTTP POST.
"GET"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"
<!-- ... -->
/>