FileManagerFileListDetailsViewSettings.ShowSelectAllCheckbox Property
In This Article
Specifies whether the Select All check box is displayed in the file list.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Show |
---|---|
File |
|
#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