DayPilot.Scheduler.rowsLoadMethod

The rowsLoadMethod property (string) specifies the HTTP request method used by rows.load() method.

Declaration

DayPilot.Scheduler.rowsLoadMethod

Possible Values

  • "GET" - sends the resource-loading request using HTTP GET.

  • "POST" - sends the resource-loading request using HTTP POST.

Default Value

"GET"

Notes

This property controls the AJAX request method used when DayPilot.Scheduler.rows.load() loads resource data from a URL.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  rowsLoadMethod: "POST",
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  rowsLoadMethod: "POST",
  // ...
};

React

<DayPilotScheduler
  rowsLoadMethod="POST"
  {/* ... */}
/>

Vue

<DayPilotScheduler
  rowsLoadMethod="POST"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.rows.load()

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript