FileManagerSettingsUpload.AdvancedModeSettings Property
Gets the Advanced upload mode settings.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual FileManagerUploadAdvancedModeSettings AdvancedModeSettings { get; }
#Property Value
Type | Description |
---|---|
File |
A File |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Advanced |
---|---|
ASPx |
|
#Remarks
The file manager allows you to specify the upload modes (Standard and Advanced) (FileManagerSettingsUpload.UseAdvancedUploadMode). Use the AdvancedModeSettings property to access and customize the settings that relate to Advanced upload mode.
#Example
Web Forms (in markup):
<dx:ASPxFileManager ID="fileManager" runat="server" >
<SettingsUpload ShowUploadPanel="true" Enabled="true"
UseAdvancedUploadMode="true" >
<AdvancedModeSettings EnableMultiSelect="true" />
</SettingsUpload>
...
</dx:ASPxFileManager>
Web Forms (in code):
ASPxFileManager fm = new ASPxFileManager();
...
fm.SettingsUpload.ShowUploadPanel = true;
fm.SettingsUpload.Enabled = true;
fm.SettingsUpload.UseAdvancedUploadMode = true;
fm.SettingsUpload.AdvancedModeSettings.EnableMultiSelect = true;
MVC:
@Html.DevExpress().FileManager( settings => {
settings.Name = "fileManager";
settings.SettingsUpload.ShowUploadPanel = true;
settings.SettingsUpload.Enabled = true;
settings.SettingsUpload.UseAdvancedUploadMode = true;
settings.SettingsUpload.AdvancedModeSettings.EnableMultiSelect = true;
...
}).BindToFolder(Model).GetHtml()
#Online Demo
See Also