Unplanned
Last Updated: 16 Aug 2022 09:40 by Dave
Created by: Dave
Comments: 0
Category: FileManager
Type: Feature Request
4
I want to be able to set the desired custom icon depending on the file type.
Unplanned
Last Updated: 05 Aug 2022 08:19 by Meindert
Created by: Meindert
Comments: 0
Category: FileManager
Type: Feature Request
6
Please expose an option to customize the appearance of the thumbnails. I'd like to change the icons of the files/folders in the content visualization pane.
Unplanned
Last Updated: 30 Jun 2022 05:20 by n/a
Created by: n/a
Comments: 0
Category: FileManager
Type: Feature Request
20
I would like to use the OnExpand and OnCollapse events in the TreeView segment of the FileManager. 
Completed
Last Updated: 13 Jun 2022 08:39 by ADMIN
Release 3.4.0

If there are many subfolders below a folder the list becomes too long for the TreeView window and gets cut off at the bottom. Apparently, there are some height and overflow settings missing. After some digging around in the rendered HTML and copying some CSS selectors (using F12 on Edge) I got it working with this in my CSS file:

.k-filemanager-content-container > div > div.k-pane.k-filemanager-navigation.k-pane-static > div > div > ul {
    height: 100%;
    overflow: auto;
}
.k-filemanager-content-container > div > div.k-pane.k-filemanager-navigation.k-pane-static > div > div {
    height: 100%;
}

----------ADMIN EDIT----------

In the meantime, here is a possible workaround:

<style>
 .k-treeview-lines {
        height: 100%;
 overflow: auto;
    }

    .k-filemanager-treeview {
        height: 100%;
 }
</style>

Unplanned
Last Updated: 08 Jun 2022 12:28 by Rahul
Created by: Rahul
Comments: 0
Category: FileManager
Type: Feature Request
7
Expose the option to apply sorting to the columns of the FileManager's Grid.
1 2 3