editing
Configures edit options.
Type:
The widget allows users to add, modify and delete tasks, resources and dependencies. Set the enabled option to true to enable edit functionality.
NOTE
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { //... } }); });
allowDependencyAdding
Specifies whether a user can add dependencies.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowDependencyAdding: false, //... } }); });
allowDependencyDeleting
Specifies whether a user can delete dependencies.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowDependencyDeleting: false, //... } }); });
allowDependencyUpdating
Specifies whether a user can update dependencies.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowDependencyUpdating: false, //... } }); });
allowResourceAdding
Specifies whether a user can add resources.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowResourceAdding: false, //... } }); });
allowResourceDeleting
Specifies whether a user can delete resources.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowResourceDeleting: false, //... } }); });
allowResourceUpdating
Specifies whether a user can update resources.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowResourceUpdating: false, //... } }); });
allowTaskAdding
Specifies whether a user can add tasks.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowTaskAdding: false, //... } }); });
allowTaskDeleting
Specifies whether a user can delete tasks.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowTaskDeleting: false, //... } }); });
allowTaskUpdating
Specifies whether a user can update tasks.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { allowTaskUpdating: false, //... } }); });
enabled
Specifies whether a user can edit tasks, resources and dependencies.
jQuery
index.js
$(function() { $("#gantt").dxGantt({ editing: { enabled: true, //... } }); });
Feel free to share demo-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you!
We appreciate your feedback.
We appreciate your feedback.