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.v20.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public GanttEditingSettings SettingsEditing { get; }

Property Value

Type Description
GanttEditingSettings

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()

Online Demos

See Also