The rowCreateHandling property (string) specifies the default action to be performed by the JavaScript Scheduler when a new row text is submitted.
"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)
"Disabled"Scheduler config:
{
rowCreateHandling: "Enabled",
// ...
}