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

FileManagerSettingsCookies.StoreFiltering Property

Specifies whether to store the applied filter criteria to a cookie.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true, to store the applied filter criteria to a cookie; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to StoreFiltering
ASP.NET Bootstrap Controls BootstrapFileManager
.SettingsCookies .StoreFiltering
ASP.NET MVC Extensions FileManagerSettings
.SettingsCookies .StoreFiltering
ASP.NET Web Forms Controls ASPxFileManager
.SettingsCookies .StoreFiltering

Remarks

The StoreFiltering 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 StoreFiltering="true" ... />
</dx:ASPxFileManager>
See Also