Specifies the default LinkCreate action.
Options:
- "Disabled" - creating links using drag and drop will be disabled
- "Update" - the new link will be added to .links and rendered
- "PostBack" (ASP.NET WebForms)
- "CallBack" (ASP.NET WebForms, ASP.NET MVC)
- "Notify" (ASP.NET WebForms, ASP.NET MVC)
Default Value
"Update"
See Also
Example
<div id="dp"></div>
<script>
var gantt = new DayPilot.Gantt("dp");
gantt.linkCreateHandling = "Disabled";
// ...
gantt.init();
</script>