Skip to main content
All docs
V19.2

GanttSettingsEditing.AllowDependencyDelete Property

Specifies whether users can delete dependencies.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v19.2.dll

Declaration

[DefaultValue(true)]
public bool AllowDependencyDelete { get; set; }

Property Value

Type Default Description
Boolean **true**

true, to allow users to delete dependencies; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowDependencyDelete
ASPxGantt
.SettingsEditing.AllowDependencyDelete
GanttSettings
.SettingsEditing.AllowDependencyDelete
MVCxGantt
.SettingsEditing.AllowDependencyDelete

Remarks

The following example illustrates how to disable users to delete dependencies.

<dx:ASPxGantt ID="Gantt" runat="server" ... >
    // ...
    <SettingsEditing AllowDependencyDelete="False" />
</dx:ASPxGantt>

Online Demo

ASPxGantt - Data Binding and Modification

See Also