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

GanttEditingSettings Class

Provides access to editing settings.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v20.1.dll

NuGet Package: DevExpress.Web

Declaration

public class GanttEditingSettings :
    GanttSettingsBase

The following members return GanttEditingSettings objects:

Remarks

The GanttEditingSettings class provides settings to perform add, delete, and update functions.

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

The Gantt stores a user’s changes and supports the ‘undo’ and ‘redo’ shortcuts (Ctrl+Z and Ctrl+Y).

The following example illustrates how to deny users from deleting tasks.

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

Examples

Online Demos

Implements

Inheritance

See Also