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

UploadAdvancedModeSettings.ExternalDropZoneID Property

Gets or sets the ID (or a list of IDs) of a web control or HTML element where files can be dragged and dropped for upload.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string ExternalDropZoneID { get; set; }

Property Value

Type Default Description
String String.Empty

A String value specifying the ID (or a list of IDs) of the web control or HTML element that can be used to add files for upload.

Property Paths

You can access this nested property as listed below:

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

Remarks

When the UploadAdvancedModeSettings.EnableDragAndDrop property is set to true, ASPxUploadControl allows end-users to add files to upload lists by dragging them to a control. By default, end-users can drop files to a drop zone to add them to the upload control file list.

Use the ExternalDropZoneID property to specify an external zone (HTML element) where end-users can drop a file to add it to the upload control file list. You can also specify a list of control IDs separated by the semicolon (;) sign.

To learn more about the drag and drop functionality of the upload control, see the Drag and Drop topic.

See Also