Skip to main content
Tab

ASPxGridViewCookiesSettings.StoreGroupingAndSorting Property

Gets or sets whether a cookie and layout data contain information on sorting and grouping applied to ASPxGridView.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean true

true, to add the sorting and grouping information to a cookie and layout data; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to StoreGroupingAndSorting
ASP.NET MVC Extensions GridViewSettings
.SettingsCookies .StoreGroupingAndSorting
MVCxGridViewProperties
.SettingsCookies .StoreGroupingAndSorting
ASP.NET Web Forms Controls ASPxGridView
.SettingsCookies .StoreGroupingAndSorting
GridViewProperties
.SettingsCookies .StoreGroupingAndSorting

Remarks

When the ASPxGridCookiesSettings.Enabled property is set to true, the StoreGroupingAndSorting property specifies whether information on sorting and grouping applied to the ASPxGridView is saved to a cookie.

Additionally, the StoreGroupingAndSorting property specifies whether the sorting and grouping information is saved to layout data when handling the ASPxGridBase.ClientLayout event or calling the ASPxGridBase.SaveClientLayout method.

See Also