I disabled upload widget using the following script but I can still use drag and drop functionality to upload files. Is this a bug or Am i doing something wrong?
<script type="text/javascript">
    $(document).ready(function () {
        $("#files").kendoUpload({
            multiple: false,
            async: {
                saveUrl: save,
                autoUpload: true
            },
            enabled: false
        });
    });
</script>
				
                        
I'd call that a bug - here's how you can fix it until Telerik does (demo):
(add this before you first create your widget)