Documentation

autosend

enable seding files to server immediately after they have been added to uploader. True by default.

boolean autosend;

Example

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

See also

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 looks through the files ready for uploading before sending them to server to avoid human errors.

Back to top