The eventsLoadMethod property (string) specifies the HTTP method used by the DayPilot.Month.events.load() method.
DayPilot.Month.eventsLoadMethod"GET" loads events using an HTTP GET request.
"POST" loads events using an HTTP POST request.
"GET"JavaScript
const dp = new DayPilot.Month("dp", {
eventsLoadMethod: "POST",
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
eventsLoadMethod: "POST",
// ...
};React
<DayPilotMonth
eventsLoadMethod="POST"
{/* ... */}
/>Vue
<DayPilotMonth
eventsLoadMethod="POST"
<!-- ... -->
/>