autosend

enables sending files to a server immediately after they have been added to the uploader

boolean autosend;

Example

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


Default value:

true

Related samples

Details

The default autosend mode is not recommended for forms, where attached files should be saved together with other form values.

Cancelling autosending allows users to look through the files ready for uploading before sending them to a server to avoid human errors.

See also
Back to top