Skip to main content
Tab

FileManagerFileListDetailsViewSettings.ShowSelectAllCheckbox Property

Specifies whether the Select All check box is displayed in the file list.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true, to display the Select All check box; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowSelectAllCheckbox
FileManagerSettingsFileList
.DetailsViewSettings .ShowSelectAllCheckbox

Remarks

Use the ShowSelectAllCheckbox property to specify whether the file manager displays the SelectAll check box in the file list in details mode (the FileManagerSettingsFileList.View property is set to FileListView.Details).

Example

Web Forms (in markup):

<dx:ASPxFileManager ID="fileManager" runat="server" >
    <SettingsFileList View="Details">
        <DetailsViewSettings ShowHeaderFilterButton="true" ShowSelectAllCheckBox="true" />
    </SettingsFileList>
    ...
</dx:ASPxFileManager>

Web Forms (in code):

ASPxFileManager fm = new ASPxFileManager();
...
fm.SettingsFileList.View = FileListView.Details;
fm.SettingsFileList.DetailsViewSettings.ShowHeaderFilterButton = true;
fm.SettingsFileList.DetailsViewSettings.ShowSelectAllCheckBox = true; 

MVC:

@Html.DevExpress().FileManager( settings => {
    settings.Name = "fileManager";
    settings.SettingsFileList.View = FileListView.Details;
    settings.SettingsFileList.DetailsViewSettings.ShowHeaderFilterButton = true;
    settings.SettingsFileList.DetailsViewSettings.ShowSelectAllCheckBox = true; 
    ...
}).BindToFolder(Model).GetHtml()
See Also