New to Kendo UI for jQueryStart a free 30-day trial

Toggle

methods

Toggles the enabled state of the Upload.

Parameters:enableBoolean

(Optional) The new enabled state of the Upload.

<input type="file" name="files" id="upload" />
<script>
    // The Upload is disabled when initialized
    $("#upload").kendoUpload({
        enabled: false
    });

    var upload = $("#upload").data("kendoUpload");

    // Toggles the enabled state of the Upload
    upload.toggle();
</script>
Not finding the help you need?
Contact Support