The FileManager shows only the Documents folder
The FileManager shows all folders on root level (Documents and Images)
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
I'd like to request the ability to hide and display certain files. For example, hide all pdfs, but show docx files.
Thanks!
Dear,
In the filemanager we can use the icon property in the toolbar.
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.
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
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.
Less confusing text should be used for tooltip for the ListView button.
When a node in the TreeView of a Kendo UI FileManager is selected, then the parent node is collapsed, and re-expanded, the selection is removed.
The selected node within a parent after collapsing and expanding will lose its selection. Here is a screencast of the above in action.
The selection should persist even upon expanding/collapsing parent nodes.
Moving files MORE than one level upwards in a folder hierarchy is bugged.
If you have a nested folder hierarchy like this:
folder1
folder2
folder3
1. moving a file from folder1 to folder2 works.
2. moving a file from folder2 to folder1 works.
3. moving a file from folder1 to folder3 works.
4. moving a file from folder3 to folder1 is BUGGED.
I have the issue in my code, but I also tested it in your demo site and it has the same problem.
https://demos.telerik.com/kendo-ui/filemanager/index
I have uploaded a screen dump of the error output from Chrome.
It is in or after the DataBinding event (Comming from Create action), the the error occurs, thus causing the Delete action and refresh of the UI to never occur.
The bug occurs in both Chrome and IE Edge.
Please fix the bug.
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();
}
}
When using the trackpad for a laptop, the tap event does not fire when selecting files in the Kendo UI FileManager.
The tap event will not fire the Select event.
The tap event should fire the Select event.
This event does fire for a physical mouse click, and with the touch event on a mobile device.
Hi Team,
I would like to request to add Wildcards to the Search panel for the Kendo UI FileManager.
Thank you!
Dojo example.
The file in the selected folder is displayed as "undefined"
The file data is properly retrieved and displayed.
A workaround is available in this dojo example: https://dojo.telerik.com/ORImIvaC
Hi,
I've tried to configure resizable columns in File manager grid like in the following
It works, but I got a confirm popup panel when I try to resize ...
What's wrong ..??
Thanks
Follow steps in sample at https://dojo.telerik.com/@GaloisGirl/OJUPoYOY/8
Probably related to https://feedback.telerik.com/kendo-jquery-ui/1473893-filemanager-no-path-passed-to-datasource-read-method / https://github.com/telerik/kendo-ui-core/issues/5890
As of version "@types/kendo-ui": "2020.3.0":
FileManager methods: path, view, getSelected, getSize have return type void, which is a pain to handle since it can't even be cast to bool.
FileManager method navigate doesn't accept params, should accept string 'path'.
FileManager method executeCommand doesn't accept params, should accept as per https://docs.telerik.com/kendo-ui/api/javascript/ui/filemanager/methods/executecommand .
FileManagerContextMenu interface is missing all event handlers: close, open, activate, deactivate, select.
The following are not exposed:
- kendo.data.schemas
- kendo.ui.filemanager.commands
In mobile devices, when a nested folder is renamed in the FileManager, the parent folder is displayed in the dialog for renaming.
The parent folder name is displayed in the dialog for renaming. The parent folder is renamed after saving (screencast)
It should be possible to rename nested folders on mobile devices.
Calling the loaded method on a FileEntry instance does not reset the loaded flag.
function onNavigate(e) {
var filemanager = e.sender;
var path = e.path;
var entry = filemanager.dataSource.get(path);
if (entry.loaded()) {
entry.loaded(false);
}
}
Calling entry.loaded(false);
does not reset the loaded flag of a FileEntry instance.
Calling entry.loaded(false);
should reset the loaded flag of a FileEntry instance.