enabled Boolean(default: true)

Enables (if set to true) or disables (if set to false) an Upload. To re-enable a disabled Upload, use enable().

Example

<input type="file" name="files" id="photos" />
<script>
    $("#photos").kendoUpload({
        enabled: false
    });
</script>
In this article