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