complete

Fires when all active uploads complete—either successfully or with errors.

The complete event fires only when the Upload is in async mode.

Example

<input type="file" name="files" id="photos" />
<script>
    $("#photos").kendoUpload({
        async: {
            saveUrl: "http://my-app.localhost/save",
            removeUrl: "http://my-app.localhost/remove"
        },
        complete: onComplete
    });

    function onComplete(e) {
        // The Upload is now idle
    }
</script>
In this article