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

GanttSettings.SettingsEditing Property

Provides access to the Gantt’s editing settings.

Namespace: DevExpress.Web.Mvc

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

Declaration

public GanttSettingsEditing SettingsEditing { get; }

Property Value

Type Description
GanttSettingsEditing

Contains the Gantt’s editing settings.

Remarks

@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    ...
    settings.SettingsEditing.Enabled = false;
    ...
}).Bind(GanttDataProvider.Tasks, GanttDataProvider.Dependencies, GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments).GetHtml()
See Also