Skip to main content
All docs
V19.2

GanttSettingsEditing.AllowTaskUpdate Property

Specifies whether users can update tasks.

Namespace: DevExpress.Web.ASPxGantt

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

Declaration

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

Property Value

Type Default Description
Boolean **true**

true, to allow users to update tasks; otherwise, false.

Property Paths

You can access this nested property as listed below:

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

Remarks

The following example illustrates how to disable users to update tasks.

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

Online Demo

ASPxGantt - Data Binding and Modification

See Also