enables uploading of several files at a time. True by default.
webix.ui({
view:"uploader",
multiple:false,
...//uploader config
});
Is 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