Unplanned
Last Updated: 14 Jun 2021 10:49 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: FileExplorer
Type: Feature Request
4
Add configurable option to create a thumbnail for uploaded image and use it in the thumbnail preview mode if one is available 
Unplanned
Last Updated: 14 Jun 2021 10:57 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: FileExplorer
Type: Feature Request
4
Such property will allow the developer to choose whether the warnings will be displayed as RadAlerts or standard browser alerts. In this way the built in WindowManager could be user for showing RadAlerts.
Unplanned
Last Updated: 14 Jun 2021 10:58 by ADMIN
Created by: sitefinitysteve
Comments: 1
Category: FileExplorer
Type: Feature Request
3
Please consider adding file editing into the RadFileExplorer (could leverage CodeMirror).  Would be a great help to sitefinity to be able to edit the css or less directly on the fly in the fileexplorer.
Unplanned
Last Updated: 27 Jul 2016 10:10 by DavidS
For the time being the following workaround can be used:
		<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" Width="230px" Height="430px" DisplayUpFolderItem="true"
			ExplorerMode="FileTree">
		</telerik:RadFileExplorer>
		<script>
			Telerik.Web.UI.RadFileExplorer.prototype._onTreeContextMenuItemClicked = function (sender, args) {
				var treeNode = args.get_node();
				var menuItem = args.get_menuItem().get_value();
				switch (menuItem) {
					case "Rename":
						treeNode.startEdit();
						var nodeInput = treeNode.get_inputElement();
						if (!this._allowFileExtensionRename) {
							var item = this._createItemFromTreeViewNode(treeNode);
							if (!item.isDirectory())
								nodeInput.value = $T.FileExplorerHelper.stripExtension(item);
						}
						this._attachFileNameValidator(nodeInput);
						var treeUL = sender.get_childListElement();
						this._treeKeyDownDelegate = Function.createDelegate(this, this._treeKeyDown);
						if (treeUL) $telerik.addHandler(treeUL, "keydown", this._treeKeyDownDelegate, true);
						break;
					case "NewFolder":
						if (!this._isNodeADirectory(treeNode)) {
							treeNode = treeNode.get_parent();
						}
						var nodeValue = treeNode.get_value();
						this.createNewDirectory(nodeValue);
						break;
					case "Delete":
						var selItems = sender.get_selectedNodes();
						var delItem = new Array();
						for (var i = 0; i < selItems.length; i++) {
							var currItem = this._createItemFromTreeViewNode(selItems[i]);
							delItem.push(currItem);
						}
						this.deleteItem(delItem);
						break;
					case "Upload":
						this._showUploadWindow();
						break;
					case "Copy":
						var selectedItem = null;
						if (!treeNode.get_selected()) {
							selectedItem = this._createItemFromTreeViewNode(treeNode);
						}
						this._copy("tree", selectedItem);
						break;
					case "Paste":
						var pasteItem = this._createItemFromTreeViewNode(treeNode);
						this._paste(pasteItem);
						break;
				}
			}
		</script>
Unplanned
Last Updated: 15 Sep 2022 14:26 by ADMIN
Created by: Van
Comments: 8
Category: FileExplorer
Type: Bug Report
2
The folder pane scrolling position is not persisted when the first child folder is selected.
 
 
Steps to reproduce:
1. Open https://demos.telerik.com/aspnet-ajax/fileexplorer/examples/overview/defaultcs.aspx
2. Add several folders to the last node
3. Scroll down to the bottom and select the first child folder of the last node
 
Result: The tree is scrolled to top.
Unplanned
Last Updated: 08 Dec 2021 16:55 by ADMIN
Created by: Swapnil
Comments: 0
Category: FileExplorer
Type: Feature Request
2
We are expecting the RadFileExplorer to behave like Windows File Explorer, where user can navigate to certain Folder by entering the folder name in address bar. Refer below screenshot for your reference.

 


We want to navigate directly to "Products" folder just by changing "Flowers" from controls address bar.
Unplanned
Last Updated: 17 Mar 2015 09:57 by Martin Roussel
Unplanned
Last Updated: 29 Jul 2016 13:51 by ADMIN
The current page FileList items are not properly updated when the paging is enabled. Returning to a previously paged folder is properly restored to page 1, but it keeps showing the content of lastly listed page. The issue is reproducible in all explorer modes of the control.

Video - http://screencast.com/t/KVpgADxanuh
Unplanned
Last Updated: 19 Oct 2015 15:11 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: FileExplorer
Type: Feature Request
0

			
Unplanned
Last Updated: 03 Nov 2020 11:22 by ADMIN
FileExplorer does not persist the scrolling position of its tree pane when a folder from the tree is selected in LW (and both horizontal and vertical sroll-bars are shown).

video - http://screencast.com/t/gG0l8Vbf7
Unplanned
Last Updated: 18 Dec 2015 13:20 by ADMIN
When the height of FileExplrorer is bigger that the current view port and an item from its right pane is selected, the content of the page jumps (the active element is brought to the top corner of the page).

video: http://screencast.com/t/Ezuteb3xIoCp
Unplanned
Last Updated: 05 Dec 2016 09:45 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: FileExplorer
Type: Bug Report
0
Moving of folder from the tree to the grid works, but event is not raised. Also, there is no other suitable event that handles the situation. 

The following patch will raise the event, but  you should make sure to remove the override once the bug is fixed: 

<telerik:RadFileExplorer RenderMode="Lightweight" runat="server" ID="FileExplorer1" EnableCopy="true"
    OnClientMove="OnClientMove" OnItemCommand="FileExplorer1_ItemCommand" >
    <Configuration ViewPaths="~/Images" UploadPaths="~/Images"
        DeletePaths="~/Images"></Configuration>
</telerik:RadFileExplorer>     
 
<script>
    var origFunction = Telerik.Web.UI.RadFileExplorer.prototype._onTreeNodeDropping;
 
    Telerik.Web.UI.RadFileExplorer.prototype._onTreeNodeDropping = function (sender, args) {
        origFunction.call(this, sender, args);
        var destNode = args.get_destNode();
        if (!destNode) {
            var destElement = args.get_htmlElement();
            if (!destElement) return;
            var gridElement = this.get_grid();
            var grid = gridElement != null ? this._isOverElement(destElement, gridElement.get_id()) : null;
            if (grid) {
                var isCopying = this._enableCopy && args.get_domEvent().ctrlKey;
                var eventName = isCopying ? "copy" : "move";
                var args2 = new Telerik.Web.UI.FileExplorerEventArgs(this.get_tree().get_selectedNode(), this.get_currentDirectory());
                this.raiseEvent(eventName, args2);
            }
        }
    }
 
    function OnClientMove(sender, ev) {
        // Do something
    }
</script>
Unplanned
Last Updated: 09 Oct 2019 13:31 by ADMIN
Created by: Ralf
Comments: 0
Category: FileExplorer
Type: Feature Request
0
I want to easily implement to the FileExplorer Control a download feature for every file type and size.

Can you please provide a simple solution for that (e.g. a Property  .DownloadAllFiles) or a simple code. E.g. the workaround with the Handler is for me not a good solution. (security because of the URL)

e.g. with this control a simple Download is for every filetype possible:  https://demos.gleamtech.com/filevista/
Unplanned
Last Updated: 30 Jan 2020 17:07 by ADMIN
Unable to drag and drop in ThumbnailMode when browser zoom level is 90% in Chrome. the problem can be reproduced here:
 
Steps:
2. Witch to Thumbnails mode
3. Zoom out the browser to 90%
4. Drag a thumb from the ListView to the TreeView (right to left)
Unplanned
Last Updated: 07 Feb 2022 13:41 by Swapnil

FileExplorer does not scroll its tree properly to the programatically selected folders.

Steps to reproduce:

1. Set a nested folder with a long path programatically:

fileExplorer.set_currentDirectory("/images/AAA/FolderA1/FolderA2/FolderA3/FolderA4/FolderA5")

2. Select another nested folder programatically:

fileExplorer.set_currentDirectory("/images/BBB/FolderB1/FolderB2/FolderB3/FolderB4/FolderB5")

Result: The second folder is selected, but the TreeView does not properly scroll into view containing it.

Unplanned
Last Updated: 17 Mar 2022 16:19 by Swapnil

It is not possible to navigate between ContextMenu items with the arrow keys when the Keyboard support is enabled.

The ThreeView remains the focused element even after the ContextMenu is shown and using the arrow keys navigates through the tree nodes instead of the ContextMenu items.

Steps to reproduce.

  1. Click somewhere on the page and press "F" for focus FileExplorer
  2. Press "T" to focus TreeView
  3. Press "C" to show tree context menu
  4. Pres Up/down arrow to navigate through the context menu items

Result: The navigation occurs in the three instead of the Context menu

            <telerik:RadFileExplorer ID="RadFileExplorer1" Height="380px" Width="750px"
                AllowPaging="false" EnableCopy="true" runat="server">
                <Configuration EnableAsyncUpload="true" SearchPatterns="*.*" UploadPaths="~/Images/" DeletePaths="~/Images/" ViewPaths="~/Images/"></Configuration>
            <KeyboardShortcuts
                FocusFileExplorer="F"
                FocusAddressBar="A"
                FocusToolBar="B"
                FocusTreeView="T"
                ContextMenu="C"  
                />

Unplanned
Last Updated: 22 Mar 2022 13:04 by Swapnil
Created by: Swapnil
Comments: 0
Category: FileExplorer
Type: Bug Report
0

It is not possible to select a Toolbar item in RadFileExplorer on Enter press if the control is used in Lightweight render mode.

Steps to reproduce:

1. Open https://demos.telerik.com/aspnet-ajax/fileexplorer/examples/keyboardsupport/defaultcs.aspx

2. Press "Ctrl+f2" to focus RadFileExplorer

3. Press "Shift+1" to focus its toolbar

4. Use the Arrow keys to navigate between to Toolbar items

5. Press Enter over a button (e.g. Upload)

Result: The command is not triggered

 

Workaround: The issue is not reproducible in Classic render mode.

Unplanned
Last Updated: 12 Apr 2022 11:41 by ADMIN
If the FileExplorer is located inside a container with position "absolute" or "fixed" the Scrolling mechanism breaks.