enables uploading of several files at a time.
webix.ui({
view:"uploader",
multiple:false,
...//uploader config
});
If this property is set to false value, any newly added file will replace the one in the uploader body. Only one file at a time can be addaed for upload.
Single file upload is useful in combination with cancelled autosend.
Back to top