Unplanned
Last Updated: 04 Apr 2018 15:47 by ADMIN
It would be nice to create a seamless experience for our users between an application that uses the RadFileDialogs and their native Windows OS. To that end, having the RadFileDialogs use the same InitialSelectedLayout as the base OS would go a long way. Adding some way to identify the current Windows setting and to set the RadFileDialog accordingly would be a great help.
Unplanned
Last Updated: 21 May 2018 09:00 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: FileDialogs
Type: Feature Request
1

Currently mobile phones are not visible in the navigation tree of the file dialogs.

Make them available like in MS Explorer and file dialogs.

Unplanned
Last Updated: 27 Mar 2018 08:55 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: FileDialogs
Type: Feature Request
1
Add a full autocomplete support - while the control is focused, type certain keys and the file dialogs should select the relative match for the currently typed text.
Unplanned
Last Updated: 01 Feb 2019 12:55 by ADMIN
Drag & Drop between ExplorerControl and Windows Explorer does not work
Unplanned
Last Updated: 11 Mar 2019 09:37 by ADMIN
The contents of the Path Navigation Pane and Main Pane are not synced with the selection inside the Tree Navigation Pane when a local drive is shared through a remote desktop connection.
Unplanned
Last Updated: 16 Apr 2019 15:24 by ADMIN
Created by: Minemax
Comments: 1
Category: FileDialogs
Type: Feature Request
1

Can you please add the ability to select (and scroll into view) a file/folder in the RadFileDialog by keyboard? i.e. when focused within the files section of the dialog, typing 's' should scroll to the first file starting with 's' and select it.

All the Win32 and WPF file dialogs support this.

Unplanned
Last Updated: 30 Sep 2019 11:47 by ADMIN
Currently, the icons are collected from the OS. Add an API to allow using custom icons that the developer can provide.
Unplanned
Last Updated: 19 May 2020 14:03 by ADMIN
Currently, when there is an existing file with the same FileName as the chosen from the user, a dialog is shown asking for confirmation. We should provide a way to skip the showing of this dialog. 
Unplanned
Last Updated: 28 Apr 2022 12:51 by Tony
Created by: Tony
Comments: 0
Category: FileDialogs
Type: Feature Request
1
Add a "New Folder" option in the TreeView pane's shell context menu.
Unplanned
Last Updated: 24 Apr 2023 10:49 by Martin Ivanov
Currently, you can select and deselect files and folders only through the UI. There are no methods or properties that allows to do that manually. Add such API.
Unplanned
Last Updated: 03 Jan 2023 11:51 by Martin Ivanov
Currently, double click on a file in the ExplorerControl starts the renaming action. Allow changing this behavior. The possible modes could be rename, execute file and do nothing. 

Note that also the context menu of the file should reflect the mode. Currently, the menu shows the default action based on the file extension as a bold text option. For example - "Open" or "Install". This is inconsistent with the default behavior where the file gets renamed (instead of opened). Ensure that the context menu bolding is updated accordingly.
Unplanned
Last Updated: 18 Dec 2023 15:02 by Martin Ivanov

The following exception is thrown when a new file dialog is created on a separate thread and its ShowDialog method is invoked.
InvalidOperationException: "The calling thread cannot access this object because a different thread owns it."

This happens also if you define an ExplorerControl in any Window opened on another UI thread.


To work this around make sure that you use RadFileDialog and ExplorerControls only on the main UI thread. For example:

App.Current.Dispatcher.BeginInvoke(new Action(() =>
{
     RadOpenFileDialog openFileDialog = new RadOpenFileDialog();
     openFileDialog.ShowDialog();
}));

Unplanned
Last Updated: 22 Mar 2024 09:20 by Stenly
Created by: Stenly
Comments: 0
Category: FileDialogs
Type: Feature Request
1
Add rectangle selection in multiple/extended selection mode just like in Windows Explorer.
Unplanned
Last Updated: 13 May 2022 14:58 by Stenly
Created by: Stenly
Comments: 0
Category: FileDialogs
Type: Feature Request
1

Currently, the RadFileDialogs does not provide an API option for applying additional filtering of the already filtered files.

We could extend the filtering functionality of the RadFileDialogs control.

Unplanned
Last Updated: 29 May 2018 07:51 by ADMIN
For example user might need to show files in FolderDialog or filter the folders somehow in all dialogs.

Currently this could be achieved with custom style for OpenFolderDialogControl, binding the ListBox to CurrentParentDirectory.Children and use converter. By default this binding is to CurrentFileSystemObjects.
1 2