async.maxAutoRetries Number(default: 1)

Sets the maximum number of attempts that are performed if an upload fails.

The async.maxAutoRetries property is available only when async.autoRetryAfter is set.

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,
            maxAutoRetries: 4
        }
    });
</script>
In this article