Skip to main content
A newer version of this page is available. .

ASPxGantt.SettingsEditing Property

Provides access to the Gantt’s editing settings.

Namespace: DevExpress.Web.ASPxGantt

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

Declaration

public GanttSettingsEditing SettingsEditing { get; }

Property Value

Type Description
GanttSettingsEditing

The editing settings.

Remarks

The GanttSettingsEditing class’s default settings enable users to modify tasks and their dependencies and assign or re-assign resources responsible for a certain task.

Users can edit cell values within the Task List region or use the chart’s context menu, dialog or another chart UI to manage tasks and their scope. The component immediately saves changes on the server and updates the chart.

The Gantt stores the changes made by users and supports the ‘undo’ and ‘redo’ shortcuts (Ctrl+Z and Ctrl+Y).

Example

The following example illustrates how to disable editing.

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

Online Demo

ASPxGantt - Data Binding and Modification

See Also