aspnet-devexpress-dot-web-dot-aspxgridbehaviorsettings-472d1f8c.md
Specifies whether a user can sort data in a grid.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(true)]
public bool AllowSort { get; set; }
<DefaultValue(True)>
Public Property AllowSort As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to enable the sort mode; otherwise, false.
|
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:
Run Demo: ASPxGridView - Sort Data
Run Demo: ASPxCardView - Sorting
Run Demo: ASPxVerticalGrid - Sorting
See Also
ASPxGridBehaviorSettings Class