async.removeUrl String
The URL of the handler which is responsible for the removal of the uploaded files (if any). The handler must accept POST
requests with one or more "fileNames"
fields which specify the files that will be deleted.
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>