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

FileManagerFileListDetailsViewSettings.ShowSelectAllCheckbox Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

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
HtmlEditorDocumentSelectorFileListSettings
.DetailsViewSettings.ShowSelectAllCheckbox
HtmlEditorFileManagerFileListSettings
.DetailsViewSettings.ShowSelectAllCheckbox
FileManagerSettingsFileList
.DetailsViewSettings.ShowSelectAllCheckbox
MVCxFileManagerSettingsFileList
.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 (declaratively):

<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