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

GanttDataColumn.AllowSort Property

Specifies whether users can sort columns.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public virtual DefaultBoolean AllowSort { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

One of the enumeration values.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Remarks

The ASPxGantt allows you to sort data by multiple columns.

Set the AllowSort property to True or False to allow or deny users to sort data in an individual column. If the property value is Default, the setting depends on the AllowSort property value.

Example

Set a column’s AllowSort property to true. Use the SortIndex and SortOrder properties to specify the column’s sort index and order.

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsTasksList >
        <Columns>
            <dx:GanttTextColumn FieldName="Title" AllowSort="True" SortIndex="1" SortOrder="Ascending" />
            <dx:GanttTextColumn FieldName="Resource" AllowSort="True" SortIndex="2" SortOrder="Ascending" />
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

‘How To’ Examples

Online Demos

See Also