New to Kendo UI for jQuery? Download free 30-day trial

Drag and Drop Overview

The FileManager provides inbuilt Drag and Drop functionality, which allows dragging and dropping files from the FileManager view(GridView, ListView) to the TreeView and vice versa. The functionality is enabled by default and it can be controlled by the draggable option.

The following example demonstrated how to disable the Drag and Drop functionality of the FileManager:

    <div id="filemanager"></div>

    $("#filemanager").kendoFileManager({
        draggable: false,
        dataSource: {
            data: myData //dummy json for local data binding
        }
    });

See Also

In this article