| id | dxFileUploader.Options.uploadMode |
|---|---|
| type | Enums.FileUploadMode |
| default | instantly |
Specifies how the UI component uploads files.
#include btn-open-demo with { href: "https://js.devexpress.com/Demos/WidgetsGallery/Demo/File_Uploader/FileUploading/" }
Depending on the uploadMode, the FileUploader UI component uses an HTML form or a FormData interface with a series of Ajax requests to upload files. The uploadMode property accepts one of the following values:
-
"instantly" (default)
Ajax upload. Files are uploaded after they are selected. -
"useButtons"
Ajax upload. Files are uploaded after a user clicks the Upload button. -
"useForm"
HTML form upload. Files are uploaded when the HTML form is submitted.
#####See Also#####