DayPilot.Scheduler.linksLoadMethod

The linksLoadMethod property (string) specifies the HTTP method used by the DayPilot.Scheduler.links.load() method.

Declaration

DayPilot.Scheduler.linksLoadMethod

Possible 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()

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript