Skip to main content
Tab

ASPxGridBehaviorSettings.AllowSort Property

Specifies whether a user can sort data in a grid.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool AllowSort { get; set; }

Property Value

Type Default Description
Boolean true

true to enable the sort mode; otherwise, false.

Remarks

Grid controls allow users to sort data by multiple columns. Set the AllowSort property to false to disable this functionality. Use the GridDataColumnSettings.AllowSort property to control sorting availability at the column level.

<dx:ASPxGridView ID="grid" runat="server">
    <SettingsBehavior AllowSort="false">
    <%--...--%>
</dx:ASPxGridView>

For more information on sorting in a particular control, refer to the following topics:

Online Demos

Run Demo: ASPxGridView - Sort Data

Run Demo: ASPxCardView - Sorting

Run Demo: ASPxVerticalGrid - Sorting

See Also