Skip to main content
All docs
V19.2

GanttSettingsEditing.AllowResourceAssignmentInsert Property

Specifies whether users can insert resource assignments.

Namespace: DevExpress.Web.ASPxGantt

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

Declaration

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

Property Value

Type Default Description
Boolean **true**

true, to allow users to insert resource assignments; otherwise, false.

Property Paths

You can access this nested property as listed below:

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

Remarks

The following example illustrates how to disable users to insert resource assignments.

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

Online Demo

ASPxGantt - Data Binding and Modification

See Also