Skip to main content
A newer version of this page is available. .
Tab

FileManagerSettingsCookies.StoreSorting Property

Specifies whether to store the sort order to a cookie.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool StoreSorting { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to store the sort order to a cookie; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to StoreSorting
ASP.NET Controls and MVC Extensions ASPxFileManager
.SettingsCookies .StoreSorting
HtmlEditorFileManager
.SettingsCookies .StoreSorting
RichEditFileManager
.SettingsCookies .StoreSorting
RichEditFolderManager
.SettingsCookies .StoreSorting
ASP.NET Bootstrap Controls BootstrapFileManager
.SettingsCookies .StoreSorting
ASP.NET MVC Extensions FileManagerSettings
.SettingsCookies .StoreSorting
MVCxFileManager
.SettingsCookies .StoreSorting

Remarks

The StoreSorting property is in effect if the View property is set to Details.

<dx:ASPxFileManager ID="fileManager" ...>
    ...
    <SettingsFileList View="Details">
        <DetailsViewSettings AllowColumnResize="true" AllowColumnDragDrop="true" AllowColumnSort="true" ShowHeaderFilterButton="false" />
    </SettingsFileList>
    <SettingsCookies StoreSorting="true" ... />
</dx:ASPxFileManager>
See Also