GanttSettings.SettingsEditing Property
Provides access to the Gantt’s editing settings.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
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()
Examples
See Also