Skip to main content
Tab

UploadAdvancedModeSettings.EnableFileList Property

Specifies whether a file list is available in the upload control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true, to enable file list; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to EnableFileList
ASP.NET MVC Extensions UploadControlSettings
.AdvancedModeSettings .EnableFileList
ASP.NET Web Forms Controls ASPxUploadControl
.AdvancedModeSettings .EnableFileList

Remarks

Set the EnableFileList property to true to enable a file list element. The file list contains a list of files for upload and allows end-users to remove a particular file from the list.

EUD_FileUpload_FileList

The file list can be displayed at the control’s top or bottom, based on the UploadAdvancedModeSettings.FileListPosition property. You can customize the element style settings using the UploadAdvancedModeSettings.FileListItemStyle property.

You can try this functionality in the Upload Control - Multi-File Selection online demo.

Note

The EnableFileList property is not in effect if the UploadAdvancedModeSettings.EnableMultiSelect property is disabled.

See Also