New to Kendo UI for jQueryStart a 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. To prevent conflicts between selection and drag-and-drop operations, which both respond to mouse events, drag operations are initiated only after the mouse button is held down for a minimum of 150 milliseconds.

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

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

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

See Also

In this article
See Also
Not finding the help you need?
Contact Support