dropZone String

Initializes a drop-zone element based on a given selector, which provides the drag-and-drop file upload.

Example

<div>
    <input name="files" id="files" type="file" />
    <div class="dropZoneElement">Drag and drop file here</div>
</div>
<script>
    $(document).ready(function() {
        $("#files").kendoUpload({
            async: {
                saveUrl: "http://my-app.localhost/save",
                removeUrl: "http://my-app.localhost/remove"
            },
            dropZone: ".dropZoneElement"
        });
    });
</script>
In this article