Skip to main content
Tab

FileManagerSettingsCookies.StoreColumnsWidth Property

Specifies whether to store the columns’ widths to a cookie.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

#Declaration

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

#Property Value

Type Default Description
Boolean false

true, to store the columns’ widths to a cookie; otherwise, false.

#Property Paths

You can access this nested property as listed below:

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

#Remarks

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