ASPxGridBehaviorSettings.AllowSort Property
Specifies whether a user can sort data in a grid.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
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
See Also