contextMenu Object|Boolean
(default: true)
Configures the ContextMenu of the FileManager.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/kendo-ui/service/filemanager/";
$("#fileManager").kendoFileManager({
contextMenu: false,
dataSource: {
transport: {
read: {
type: "post",
url: baseUrl + "Read"
}
}
}
});
</script>