resume
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.
Example - wiring up an event handler that triggers when a user resumes a selected file
<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>