Completed
Last Updated: 06 Jun 2013 08:07 by Martin Roussel
ADMIN
Created by: Vessy
Comments: 1
Category: FileExplorer
Type: Bug Report
2
Upload dialog layout is broken in iPad

Steps to reproduce:
1. Navigate to http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/overview/defaultcs.aspx ;
2. Open the upload dialog.
Completed
Last Updated: 08 Oct 2013 17:07 by Chris Jibb
Uploading a file when ExplorerMode is set to FileTree causes a JavaScript error in FileExplorer.

The same error is thrown in case the there is a value, set to the FileExplorer's InitialPath property.
Completed
Last Updated: 20 Jun 2017 14:49 by Imported User
If the AsyncUpload control is enabled in the FileExplorer when  and the user uploads more that 1 file, the FileExplorer throws a JavaScript error with the following message:

TypeError: this.control.get_allowMultiRowSelection is not a function
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.
Completed
Last Updated: 13 Aug 2021 10:00 by ADMIN
Release R1 2016
When users quickly select different folders in the TreeView and content is still loading, the caching mechanism of FileExplorer fails and loads incorrect data to the last selected folder. 
Completed
Last Updated: 03 Aug 2018 16:39 by Kevin Neumann
A workaround is to disable the embedded jQuery and use an older version (for example, 1.11.1 which is the previous version the suite used): https://docs.telerik.com/devtools/aspnet-ajax/controls/scriptmanager/disabling-the-embedded-jquery

Repro steps:

1. put a file explorer on the page
2. right click a file in it and select Rename
3. enter a new name, click OK

Expected: file is renamed

Actual: Firefox throws TypeError: access to strict mode caller function is censored

Sample markup

        <telerik:RadFileExplorer RenderMode="Lightweight" runat="server" ID="FileExplorer1" Width="520px" Height="310px">
            <Configuration ViewPaths="~/images" UploadPaths="~/images"
                DeletePaths="~/images"></Configuration>
        </telerik:RadFileExplorer>
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>
Completed
Last Updated: 10 May 2013 14:15 by ADMIN
When two FileExplorers, used in ThumbnailsView mode, are added to a page from a user control, the navigation through the trees of both FileExplorers updates the ListView of the first explorer.

video: http://screencast.com/t/9HYpIxNRznZ
Unplanned
Last Updated: 17 Mar 2015 09:57 by Martin Roussel
Completed
Last Updated: 24 Mar 2023 15:19 by ADMIN
Release R1 2023 SP1

TreeView context menu remains visible when a permission alert is shown. I should be hidden like the Grid contect menu is.

Video:

https://screencast-o-matic.com/watch/crlYQMV2dzP

Steps to reproduce:

1. Copy a file from the Grid in RadFileExplorer

2. Right click over the same directory in the TreeView and select Paste

Result:

 

Completed
Last Updated: 03 Aug 2015 13:10 by ADMIN
Clicking on the FileExplorer's Refresh button does not refresh the pager of the control properly when the currently selected page in the grid/listview is bigger than 1.

Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/server-sideapi/initialpathandpaging/defaultcs.aspx
2. Navigate to some page (e.g. 3) in the FileExplorer's grid/listview
3. Refresh the control (click the "Refresh" button on the toolbar)

Result: FileExplorer shows the content if the first page, while the pager keeps the state from before the refresh (e.g. 3).
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
Completed
Last Updated: 04 Mar 2019 16:11 by ADMIN
A workaround is to disable the embedded jQuery and use an older version (for example, 1.11.1 which is the previous version the suite used): https://docs.telerik.com/devtools/aspnet-ajax/controls/scriptmanager/disabling-the-embedded-jquery
Completed
Last Updated: 05 Feb 2016 11:55 by ADMIN
The issue is reproducible with RadEditor. When using Lightweight rendering in RadEditor, the FileExplorer's address bar has an inline style with height: 16px rule. This rule should be added only in Classic rendering.

As a side effect, the text in the address box is cut off. 

Possible workaround is to add setting in the web.config to force Lightweight rendering for RadFileExplorer:

<add key="Telerik.Web.UI.FileExplorer.RenderMode" value="lightweight" />
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.
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: 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: 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.

Completed
Last Updated: 20 May 2021 19:57 by grill
Release R2 2021 SP1

There is a scroll and the Upload button is partially hidden when the Bootstrap skin is used in Classic render mode:

Completed
Last Updated: 11 Jun 2020 14:27 by ADMIN
Release R2 2020 SP1

Reproduction code:

protected void Page_Load(object sender, EventArgs e)
{
    RadToolBarDropDown dropDown = new RadToolBarDropDown("PageSize");
       
    dropDown.CssClass = "perPageDropDown";
    dropDown.EnableImageSprite = false;
    // dropDown.Text = GetGlobalResourceObject("Insight", "Per pagina")
    // dropDown.ToolTip = GetGlobalResourceObject("Insight", "Per pagina")
    FileExplorer1.ToolBar.Items.Add(dropDown);
}

<telerik:RadFileExplorer RenderMode="Lightweight" runat="server" ID="FileExplorer1" Width="595px" Height="350px"
    AllowPaging="true" PageSize="10">
    <Configuration EnableAsyncUpload="true" ViewPaths="~/"
        UploadPaths="~/" DeletePaths="~/"></Configuration>
</telerik:RadFileExplorer>

1 2 3