Skip to main content

DataViewBase.AllowSorting Property

Gets or sets whether an end-user can sort data. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public bool AllowSorting { get; set; }

Property Value

Type Description
Boolean

true, to allow an end-user to sort data; otherwise, false.

Remarks

End-users are allowed to sort data if the view’s AllowSorting property is set to true. Individual columns provide the ColumnBase.AllowSorting property, allowing the default behavior specified by the view to be overridden. Setting this property to ‘True’ or ‘False’ overrides the default behavior. This can be useful when it is required to prevent an end-user from sorting data by the values of specific columns.

If a column’s ColumnBase.AllowSorting property is set to ‘Default’, the ability to sort data by its values is controlled by the view’s AllowSorting property. In this instance, to obtain whether an end-user can sort data by the current column, use the ColumnBase.ActualAllowSorting property.

Note

If the AllowSorting property is set to false, the grid does not synchronise its sorting and grouping with the ICollectionView.

To learn more, see Sorting.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AllowSorting property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also