JavaScript/jQuery Gantt - editing

Configures edit options.

Type:

Object

The widget allows users to add, modify and delete tasks, resources and dependencies. Set the enabled option to true to enable edit functionality.

NOTE
Make sure that your data sources (tasks, resources and dependencies) support edit actions.

View Demo

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • //...
  • }
  • });
  • });

allowDependencyAdding

Specifies whether a user can add dependencies.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowDependencyAdding: false,
  • //...
  • }
  • });
  • });

allowDependencyDeleting

Specifies whether a user can delete dependencies.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowDependencyDeleting: false,
  • //...
  • }
  • });
  • });

allowDependencyUpdating

Specifies whether a user can update dependencies.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowDependencyUpdating: false,
  • //...
  • }
  • });
  • });

allowResourceAdding

Specifies whether a user can add resources.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowResourceAdding: false,
  • //...
  • }
  • });
  • });

allowResourceDeleting

Specifies whether a user can delete resources.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowResourceDeleting: false,
  • //...
  • }
  • });
  • });

allowResourceUpdating

Specifies whether a user can update resources.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowResourceUpdating: false,
  • //...
  • }
  • });
  • });

allowTaskAdding

Specifies whether a user can add tasks.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowTaskAdding: false,
  • //...
  • }
  • });
  • });

allowTaskDeleting

Specifies whether a user can delete tasks.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowTaskDeleting: false,
  • //...
  • }
  • });
  • });

allowTaskUpdating

Specifies whether a user can update tasks.

Type:

Boolean

Default Value: true

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • allowTaskUpdating: false,
  • //...
  • }
  • });
  • });

enabled

Specifies whether a user can edit tasks, resources and dependencies.

Type:

Boolean

Default Value: false

index.js
  • $(function() {
  • $("#gantt").dxGantt({
  • editing: {
  • enabled: true,
  • //...
  • }
  • });
  • });