Declined
Last Updated: 28 Jul 2016 12:28 by ADMIN
Created by: Imported User
Comments: 1
Category: FileExplorer
Type: Feature Request
1
We had a requirement to add Copy/Paste icons the RadFileExplorer toolbar. That was the easy part. Getting them to call into the native Copy/Paste functions that are used by the Context Menus proved to be challenge.

Support provided me the solution below but it would have been nice to have OOB:

			function CopyFiles() {
				var fileExplorer = $find("<%=RadFileExplorer1.ClientID%>");
				fileExplorer.copyItems(fileExplorer.get_selectedItems());
			}
			function PasteFiles() {
				var fileExplorer = $find("<%=RadFileExplorer1.ClientID%>");
				fileExplorer.paste(fileExplorer._getCurrentFolderItem())
			}
Declined
Last Updated: 29 Jul 2016 13:33 by ADMIN
Created by: Bonnie
Comments: 1
Category: FileExplorer
Type: Feature Request
0
For large directories we would like to set the initial sort order to descending so we could see the newest files first.

Other times we would like to have the initial sort be by filename descending.

We want to set this declaratively on the control or in the .net code behind on initial page load.
Declined
Last Updated: 26 May 2021 20:39 by ADMIN
Support custom upload dialog by overriding the built-in RadWindowManager within RadFileExplorer with a custom RadWindow upload dialog.

We need more than just adding meta data to uploaded files but must have complete control over this custom Radwindow upload dialog.

Thanks in advance,
Bob Baldwin
Trabon Solutions