async.autoRetryAfter Number
If async.autoRetryAfter
is set, the failed upload request is repeated after the declared amount of time in miliseconds.
Example
<input type="file" name="files" id="photos" />
<script>
$("#photos").kendoUpload({
async: {
saveUrl: "http://my-app.localhost/save",
removeUrl: "http://my-app.localhost/remove",
chunkSize: 2000,
autoRetryAfter: 300
}
});
</script>