Unplanned
Last Updated: 21 Apr 2023 07:55 by ADMIN

For the future it would be nice if a separate "move" endpoint was optionally available since many of us tend to use virtual filesystem layouts instead of real filsystems.

That said, I used the advice here to setup my own custom handling for file moves:

FileManager - Detect move vs copy in UI for ASP.NET MVC | Telerik Forums

If I preventDefault, I can only do 1-2 moves before I am then unable to navigate the folders anymore through either column. If I allow it to propogate and fire off the create and destroy request (my serverside functions ignore these as invalid), the navigation continues to work.

Can you suggest what events I can maybe fire manually to trigger success without making the create and destroy request, or suggest another way to fix this issue?

My move handler:


function onexecute(e) {
        if (e.command == "MoveCommand") {

            var d = {
                'items' : e.options.items,
                'targetfolder' : e.options.target
            };

            $.post('/Data/Gallery_move?aid=@Model.Asset.ID', d)/*, function(data){
            });*/
            
            //e.preventDefault();
        }
    }

Unplanned
Last Updated: 08 Feb 2021 15:52 by ADMIN

Feature Request

The tooltip for the ListView button (ListView) in the FileManager is misleading. Consider renaming it to "thumbnails" or less confusing text. Currently, it leads to the impression that the items would be represented as normal list instead of as items in the ListView widget.

Expected/desired behavior

Less confusing text should be used for tooltip for the ListView button.

Unplanned
Last Updated: 02 Feb 2021 06:59 by ADMIN
Created by: Stéphane
Comments: 0
Category: FileManager
Type: Feature Request
4
Please expose an autoBind configuration option for the Filemanager, similar to the other dataSource bound components, so it is possible to control whether to bind the widget to the data source on initialization or not.
Completed
Last Updated: 05 Jan 2021 15:09 by ADMIN
Created by: Alan
Comments: 1
Category: FileManager
Type: Feature Request
0
Is it possible to add folder icons to the folder list on left of FileManager control? If not, I would like to suggest this as an added feature.
Unplanned
Last Updated: 20 May 2020 12:28 by ADMIN
Created by: ColinBlakey
Comments: 1
Category: FileManager
Type: Feature Request
1
The search field is more like a real time filter in that you can start typing a filename and it limits the files to those starting with the specific characters. But it fails in search if I start with something like *.csv i.e. find all csv files or if I have files like Text.V1.csv as soon as a get to the first period it fails.  So it's not really a search. CAn this be changed to handle wildcards, periods, etc.
Unplanned
Last Updated: 08 May 2020 15:17 by ADMIN
Created by: Dorothy
Comments: 0
Category: FileManager
Type: Feature Request
2

I'd like to request the ability to hide and display certain files.  For example, hide all pdfs, but show docx files.

Thanks!

Unplanned
Last Updated: 17 Apr 2020 07:40 by ADMIN
Created by: ColinBlakey
Comments: 0
Category: FileManager
Type: Feature Request
8
When you are looking at a folder structure in file manager. Typing a Filename and only searching at the current folder seems contradictory to normal search behavior which traverses both the current folder and sub folders to find that name. Can we add a search methods that calls the API to search.
Completed
Last Updated: 20 Mar 2020 10:33 by ADMIN
Release 2020.R2

The filemanager provides no way to open file by keyboard: "enter" renames a file and "space" selects it.

According to https://docs.telerik.com/kendo-ui/api/javascript/ui/filemanager/events/open files can be opened by double-click.

Unplanned
Last Updated: 12 Mar 2020 06:19 by ADMIN
Created by: Extreg
Comments: 3
Category: FileManager
Type: Feature Request
2

Dear,

We are trying to make the FileManager compatible with mobile.
Could there be extra configuration so it hides certain properties of widgets?

An example if mobile:

- Hide the text in the Toolbar
- Hide the TreeView
- Optional hide the search bar and details options

Or are there other possibilities on the roadmap?

Kind regards,
ITwIT

 

Unplanned
Last Updated: 17 Feb 2020 09:29 by ADMIN
Created by: Extreg
Comments: 1
Category: FileManager
Type: Feature Request
1

Dear,

 

In the filemanager we can use the icon property in the toolbar.

toolbar.items.icon String

Sets icon for the item. The icon should be one of the existing in the Kendo UI theme sprite.

 

Is it possible to implement this also for the context menu now it uses next property.

contextMenu.items.spriteCssClass String

Specifies the spriteCssClass of the item.

 

It's easier to make use of the icon class then the spriteCssClass.
Is this a possible feature?

Kind regards,
ITwIT