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

TreeListColumnSortMode Enum

Lists the values that specify how a tree list column’s data should be sorted.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v18.2.dll

Declaration

public enum TreeListColumnSortMode

Members

Name Description
Default

If a column’s TreeListDataColumn.SortMode property is set to default, the column’s data will be sorted according to the TreeListSettingsBehavior.SortMode property. If both those properties are set to Default, the grid data is sorted by the column’s edit values (these are synchronized with the bound data source’s values).

Value

Sorts the column’s data by the column’s edit values (these are synchronized with the bound data source’s values).

DisplayText

Sorts the column’s data by the column’s display text (the strings displayed within the column’s cells).

Related API Members

The following properties accept/return TreeListColumnSortMode values:

Remarks

Use the Tree List’s TreeListDataColumn.SortMode property to specify how a column’s data is sorted when sorting is applied. To define the sorting mode for all tree list columns, use the ASPxGridBehaviorSettings.SortMode property.

See Also