DxUpload Properties
A control that allows users to upload files to a web server.| Name | Description |
|---|---|
| AcceptedFileTypes | Specifies MIME types that users can select in the Open File dialog to add to the file list. |
| AllowCancel | Specifies whether users can cancel file upload. |
| AllowedFileExtensions | Specifies file extensions that the Upload component accepts. |
| AllowMultiFileUpload | Specifies whether users can upload (select in an Open File dialog or drag and drop) multiple files via the Upload component. |
| AllowPause | Specifies whether users can pause file upload in chunk upload mode. |
| Attributes | Specifies a collection of standard HTML attributes applied to the component. Inherited from DxControlComponent<JSProxyType>. |
| ChunkSize | Specifies the chunk size in bytes. |
| CssClass | Assigns a CSS class to the component. Inherited from DxComponent. |
| ExternalDropZoneCssSelector | Specifies the CSS selector of a container or HTML element wherein users can drop files to upload. |
| ExternalDropZoneDragOverCssClass | Assigns a CSS class to the drop zone when users drag files over it. |
| ExternalSelectButtonCssSelector | Specifies the CSS selector of a button or HTML element that invokes the open file dialog. |
| Id | Specifies the component’s unique identifier. Inherited from DxComponent. |
| MaxFileCount | Specifies the maximum number of files a user can select to upload. |
| MaxFileSize | Specifies the maximum file size in bytes. |
| MinFileSize | Specifies the minimum file size in bytes. |
| Name | Specifies a unique identifier used to associate the Upload component with uploaded files on the server. |
| SelectButtonText | Specifies the select button’s text. |
| ShowFileList | Specifies whether to show the file list. |
| ShowSelectButton | Specifies whether to show the select button that invokes the open file dialog. |
| UploadMode | Specifies how the Upload component uploads files to the server. |
| UploadUrl | Specifies a target URL for the upload request. |
| ValidateByAcceptedFileTypes | Specifies whether the component validates selected/dropped files against accepted file types before adding them to the file list. |
| Visible | Specifies whether the Upload is visible. |
See Also