DayPilot.Scheduler.rowCreateHandling

The rowCreateHandling property (string) specifies the default action to be performed by the JavaScript Scheduler when a new row text is submitted.

Possible Values

  • "Disabled" - row creating is disabled

  • "Enabled" - enables row creating, but performs no action on submit (use onRowCreate or onRowCreated handler to provide a custom event handler)

  • "CallBack"- fires RowCreate event on the server side using CallBack (ASP.NET WebForms, ASP.NET MVC, Java)

  • "PostBack"- fires RowCreate event on the server side (ASP.NET WebForms)

Default Value

"Disabled"

Example

Scheduler config:

{
  rowCreateHandling: "Enabled",
  // ...
}