New to Kendo UI for jQueryStart a free 30-day trial

Resume

events

Fires when the files are resumed through clicking the Resume button. The button is visible if chunksize is set and the file upload is paused.

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

    function onResume(e) {
		// Optionally resumes the clear operation by calling the preventDefault method
        e.preventDefault();
    };
</script>
Not finding the help you need?
Contact Support