Skip to main content
All docs
V25.1
  • GanttCheckColumn.PropertiesCheckEdit Property

    Gets the column editor’s settings.

    Namespace: DevExpress.Web.ASPxGantt

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

    NuGet Package: DevExpress.Web

    Declaration

    public CheckBoxProperties PropertiesCheckEdit { get; }

    Property Value

    Type Description
    CheckBoxProperties

    The column editor’s settings.

    Remarks

    The PropertiesCheckEdit property allows you to customize the editor’s appearance and behavior settings.

    <dx:ASPxGantt ID="Gantt" runat="server"...>
        ...
        <SettingsTasksList >
            <Columns>
                <dx:GanttCheckColumn FieldName="Delayed" Width="50">
                    <PropertiesCheckEdit>
                        <ValidationSettings>
                            <RequiredField IsRequired="true" 
                                ErrorText="This field is required." />
                        </ValidationSettings>
                    </PropertiesCheckEdit>
                </dx:GanttCheckColumn>
            </Columns>
        </SettingsTasksList>
    </dx:ASPxGantt>
    

    Examples

    Online Demo

    ASPxGantt - Columns

    See Also