multiple

enables uploading of several files at a time.

boolean multiple;

Example

webix.ui({
    view:"uploader",
    multiple:false,
    ...//uploader config
});


Default value:

true

Related samples

Details

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