Unplanned
Last Updated: 05 Aug 2022 08:19 by Meindert
Created by: Meindert
Comments: 0
Category: FileManager
Type: Feature Request
3
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.
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>

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";
}

Unplanned
Last Updated: 22 Mar 2023 21:04 by Rahul
Created by: Rahul
Comments: 0
Category: FileManager
Type: Feature Request
2
By default, the items are automatically sorted by name. I want to programmatically change the default "Sort By" option, so the user does not need to change it from the dropdown.
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

 

Unplanned
Last Updated: 06 Dec 2023 15:42 by Rick
Created by: Rick
Comments: 0
Category: FileManager
Type: Feature Request
2
Please provide the ability to set a ProxyUrl for file downloads. This will avoid the need to serve downloaded files as data URLs through JSInterop and will support downloading of larger files.
Duplicated
Last Updated: 15 Mar 2024 07:33 by Fabien

Greetings.

I was using the FileManager component for a project and wanted to disable some operations since in my use case, it must not be possible to do them. But I was surprized to notice that this apparently cannot be done. So I suggest to add boolean parameters that will allow to disable the following features:

  • new folder
  • renaming
  • searching
  • details pan
  • download
  • upload
  • delete

Of course, the goal here would be to render the user interface accordingly. E.g., if deletion is disabled:

  • remove the Delete entry in the right click menu
  • and never call the OnDelete event.
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. 
Unplanned
Last Updated: 14 Oct 2022 10:53 by ADMIN
I would like to be able to add a DropDownList or other HTML in the Upload Dialog. 
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.
Under Review
Last Updated: 28 Mar 2024 12:07 by ADMIN

Greetings.

I was using the FileManager recently and wanted to make sure the user could only select a single file. I was expecting a parameter to configure that but I didn't find any. I was able to bypass the issue by acting on the value reported by the component but I found it a bit inconvenient.

I think it might be interesting if we could:

  • choose if we select one or several elements (single vs multiple selection, like with grids)
  • choose what element we can select (files & folders, files only, folders only)

What do you think?

Unplanned
Last Updated: 28 May 2024 07:45 by ADMIN

Currently, only the "Download" option has an icon and this is not consistent:

1 2