FileManagerFileListDetailsViewSettings.ShowSelectAllCheckbox Property
Specifies whether the Select All check box is displayed in the file list.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v20.2.dll
Declaration
[DefaultValue(false)]
public bool ShowSelectAllCheckbox { get; set; }
<DefaultValue(False)>
Public Property ShowSelectAllCheckbox As Boolean
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:
Library | Object Type | Path to ShowSelectAllCheckbox |
---|---|---|
ASP.NET MVC Extensions | MVCxFileManagerSettingsFileList |
|
MVCxFileManagerSettingsFileList |
|
|
ASP.NET Web Forms Controls | HtmlEditorDocumentSelectorFileListSettings |
|
HtmlEditorFileManagerFileListSettings |
|
|
FileManagerSettingsFileList |
|
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
Feedback