async.removeField String
(default: "fileNames")
The name of the form field that is submitted to removeUrl
.
Example
<input type="file" name="files" id="photos" />
<script>
$("#photos").kendoUpload({
async: {
saveUrl: "http://my-app.localhost/save",
removeUrl: "http://my-app.localhost/remove",
removeField: "customRemoveField"
}
});
</script>