async Object

Configures the asynchronous upload of files. For more details, refer to the article on the async mode of the Upload.

Example

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