Skip to main content
All docs
V23.2

GanttDateEditProperties Class

Contains settings specific to the GanttDateTimeColumn editor.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public class GanttDateEditProperties :
    DateEditProperties

The following members return GanttDateEditProperties objects:

Remarks

The example below demonstrates how to customize the appearance and behavior of the GanttDateTimeColumn editor:

<dx:ASPxGantt ID="Gantt" runat="server"...>
    <!-- ... -->
    <SettingsTasksList >
        <Columns>
            <dx:GanttDateTimeColumn FieldName="StartDate" Caption="Start Date">
                <PropertiesDateEdit AllowUserInput="true" DisplayFormatString="MM/dd/yy H:mm">
                    <TimeSectionProperties Visible="true"/>
                </PropertiesDateEdit>
            </dx:GanttDateTimeColumn>
            <!-- ... -->
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

Add a column that displays date and time in the ASPxGantt

See Also