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.v20.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:

Show 22 property paths
Library Object Type Path to ExternalDropZoneID
ASP.NET Controls and MVC Extensions ASPxHtmlEditorUploadControl
.AdvancedModeSettings .ExternalDropZoneID
HtmlEditorAudioSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
HtmlEditorDocumentSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
HtmlEditorFileManagerUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
HtmlEditorFlashSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
HtmlEditorImageSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
HtmlEditorVideoSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
RichEditDocumentSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
SpreadsheetFileManagerUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
ASPxUploadControl
.AdvancedModeSettings .ExternalDropZoneID
FileManagerSettingsUpload
.AdvancedModeSettings .ExternalDropZoneID
ASP.NET Bootstrap Controls BootstrapFileManagerSettingsUpload
.AdvancedModeSettings .ExternalDropZoneID
BootstrapUploadControl
.AdvancedModeSettings .ExternalDropZoneID
ASP.NET MVC Extensions MVCxFileManagerSettingsUpload
.AdvancedModeSettings .ExternalDropZoneID
MVCxHtmlEditorAudioSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
MVCxHtmlEditorDocumentSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
MVCxHtmlEditorFileManagerUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
MVCxHtmlEditorFlashSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
MVCxHtmlEditorImageSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
MVCxHtmlEditorVideoSelectorUploadSettings
.AdvancedModeSettings .ExternalDropZoneID
MVCxUploadControl
.AdvancedModeSettings .ExternalDropZoneID
UploadControlSettings
.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