DayPilot.Scheduler.linkCreateHandling

The linkCreateHandling property (string) specifies how drag and drop link creation will be handled in the JavaScript Scheduler. Link creation UI is disabled by default.

Possible Values

  • "Disabled" - link creation is disabled

  • "Update" - link is automatically created

  • "CallBack" - server-side LinkCreate event handler is fired using CallBack (ASP.NET WebForms, ASP.NET MVC, Java)

  • "PostBack" - server-side LinkCreate event handler is fired using PostBack (ASP.NET WebForms)

  • "Notify" - link is automatically create and the server-side LinkCreate event handler is fired using CallBack (ASP.NET WebForms, ASP.NET MVC, Java)

Default Value

"Disabled"

Example

Scheduler config:

{
  linkCreateHandling: "Update",
  // ...
}