Duplicated
Last Updated: 08 Feb 2024 08:51 by ADMIN
Created by: Wolf-Günter
Comments: 2
Category: FileManager
Type: Bug Report
5
If the FileManager is nested inside an EditForm or a TelerikForm, it will trigger exceptions. Some of the nested components in the FileManager will require a ValueExpression, as if they are related to the form's EditContext.
Completed
Last Updated: 05 Jan 2024 16:23 by ADMIN

When using the FileManager and navigating through directories, the Breadcrumb does not show the path.

Reproduction: https://blazorrepl.telerik.com/GdOCYQki12iTAeWd34

 

Completed
Last Updated: 13 Oct 2023 08:21 by ADMIN
Release 5.0.0 (15 Nov 2023) (R1 PI1)
Created by: Meindert
Comments: 0
Category: FileManager
Type: Bug Report
4

When the FileManager is placed in a Window/Dialog, the ContextMenu does not open.

---

ADMIN EDIT

---

Essentially, the ContextMenu is rendered but appears behind the Window/Dialog and thus it is not visible. The issue is z-index related and a possible workaround is to increase the z-index of the ContextMenu to ensure it will be visible.

Example: https://blazorrepl.telerik.com/ccuWuIuM51LP1T4559

Completed
Last Updated: 19 Apr 2023 07:28 by ADMIN
Release 4.2.0 (04/26/2023)

Sorry to bother you, but we found a problem when using the FileManager control. When you are in a directory hierarchy Home > Dir1 > DirA > DirX > DirY and you want to navigate to the parent directory say DirX using the breadcrumb, clicking on DirX, FileManager sends you to the root directory. I hope you can help me.

If there are a lot of child folders, the Breadcrumb navigation does not work correctly. The current directory does not respond to the selected one.

Duplicated
Last Updated: 01 Mar 2023 14:06 by ADMIN
The FileManager Breadcrumb navigation breaks on Unix systems - the component navigates to "Home" and doesn't display any files and folders.
Completed
Last Updated: 16 Jan 2023 10:05 by ADMIN
Release 4.0.0 (18 Jan 2023) (R1 2023)
Created by: Comercializadora Paxia
Comments: 0
Category: FileManager
Type: Bug Report
2

The FileManager is not showing icons for video files, e.g. mp4. The icon's CSS class is k-i-video, but it may need to be k-i-file-video.

The workaround is to apply the k-i-file-video icon to k-i-video:

CSS

.k-i-video::before {
  content: "\e93b";
}

Completed
Last Updated: 17 Aug 2022 15:26 by ADMIN
Release 3.6.0 (14 Sep 2022) (R3 2022)
If you navigate to a deep hierarchy of subfolders the breadcrumb items in the file manager throw stack overflow exception. 
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>