This is a migrated thread and some comments may be shown as answers.

treeView in FileManager

1 Answer 101 Views
FileManager
This is a migrated thread and some comments may be shown as answers.
Тарас
Top achievements
Rank 1
Тарас asked on 13 Nov 2020, 01:56 PM
How remove or not show treeView in FileManager?

1 Answer, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 18 Nov 2020, 08:43 AM

Hello,

The TreeView can be currently hidden with the following JS, that also hides the corresponding resize handle:

@(Html.Kendo().FileManager()
    .Name("filemanager")
    ...
)

$(document).ready(function () {
    var filemanager = $("#filemanager").getKendoFileManager();
							
    filemanager.wrapper.find(".k-filemanager-navigation").hide();
    filemanager.wrapper.find(".k-filemanager-splitbar-navigation").hide();
})

In case you have any additional questions, please let me know.

Regards,
Dimitar
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
FileManager
Asked by
Тарас
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Share this question
or