Completed
Last Updated: 10 Sep 2018 08:24 by ADMIN
ADMIN
Created by: Martin
Comments: 13
Category: FileDialogs
Type: Feature Request
15

			
Completed
Last Updated: 06 Oct 2022 15:10 by ADMIN
Release LIB 2022.3.1010 (10 Oct 2022)
Add an API that can be used to cancel or modify the editing of files and folders. For example, you can introduce Editing and Edited events for the dialog which can be fired when the selected file goes into edit mode and after the editing is committed.
Completed
Last Updated: 14 Oct 2024 15:48 by ADMIN
FileDialogs are constructed by RadWindow and ExplorerControl as its content. 

Explorer control holds navigation tree, autocomplete, filtering combobox, main pane for viewing fodler and files, search box, breadcrumb. You can check all visual parts in the following help article:

http://docs.telerik.com/devtools/wpf/controls/radfiledialogs/visual-structure

Users might need to put the ExplorerControl in non-window parts of their application (for example in docked RadPane of RadDocking. Also, they might need to override OK/Cancel commands for that purpose.
Completed
Last Updated: 07 Oct 2021 08:04 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Setting the InitialDirectory property of the FileDialog to a folder with a huge large number of folders/items/files inside will significantly delay the loading process.
Completed
Last Updated: 30 Oct 2018 06:39 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 1
Category: FileDialogs
Type: Feature Request
5

			
Completed
Last Updated: 09 May 2018 06:01 by ADMIN
ADMIN
Created by: Vladimir Stoyanov
Comments: 1
Category: FileDialogs
Type: Feature Request
4

			
Completed
Last Updated: 10 May 2018 11:59 by ADMIN
Click on Drive / Folder in the Navigation tree should put its Name in the AutoComplete box and then pressing the Open Button of the dialog should choose the selected drive / folder and close the dialog.
Completed
Last Updated: 17 Feb 2022 15:27 by ADMIN
Release R1 2022 SP1
Inserting a USB doesn't reflect changes in the dialogs until they are reopened.
Completed
Last Updated: 16 Feb 2022 10:50 by ADMIN
Release R1 2022 SP1
Created by: Martin Ivanov
Comments: 0
Category: FileDialogs
Type: Bug Report
3

Some files that can be seen in the Windows Explorer are missing from the ExplorerControl of the file dialogs. This happens because of a silent ArgumentOutOfRangeException thrown for a corrupted file that doesn't have a "Date Modified" attribute set. This breaks the loading of the following files in the directory.

Here are the exception details:

System.ArgumentOutOfRangeException: Not a valid Win32 FileTime.
Parameter name: fileTime
   at System.DateTime.FromFileTimeUtc(Int64 fileTime)
   at System.IO.FileSystemInfo.get_LastWriteTimeUtc()
   at System.IO.FileSystemInfo.get_LastWriteTime()
   at Telerik.Windows.Controls.FileDialogs.FileSystemInfoWrapper..ctor(FileSystemInfoWrapperFactoryBase factory, FileSystemInfo fileSystemInfo)
   at Telerik.Windows.Controls.FileDialogs.FileInfoWrapper..ctor(FileSystemInfoWrapperFactoryBase factory, FileInfo info)
   at Telerik.Windows.Controls.FileDialogs.FileSystemInfoWrapperFactory.TryGetConcreteFileSystemInfoWrapper(FileSystemInfo fileSystemInfo, FileSystemInfoWrapper& fileSystemInfoWrapper)
   at Telerik.Windows.Controls.FileDialogs.DirectoryInfoWrapper.LoadFiles(DirectoryInfo directoryInfo)
   at Telerik.Windows.Controls.FileDialogs.DirectoryInfoWrapper.ReloadChildren()

 

Completed
Last Updated: 07 Oct 2021 13:25 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Performance degradation is observed while trying to open a folder in the file dialog with thousands of sub-folders/files.
Completed
Last Updated: 10 Sep 2019 05:36 by ADMIN
Release R3 2019
TextSearch navigation in the Main Pane does not work. If you press letter "a" the first folder with Name starting with "a" should be selected.
This needs to work in alll layouts including Details which uses RadGridView.
Completed
Last Updated: 20 Dec 2019 13:24 by ADMIN
Release R2 2018
ADMIN
Created by: Martin
Comments: 0
Category: FileDialogs
Type: Feature Request
3

			
Completed
Last Updated: 13 Dec 2019 13:36 by ADMIN
You can show the shortcuts by adding a Filter, however in the MS dialogs they are visible by default. 
Completed
Last Updated: 24 Apr 2018 05:32 by ADMIN
Overrideble properties / methods in DialogViewModels could be added to support custom (or filtered) sources of the navigation TreeView and navigation Breadcrumb.

As a temporary solution, users might filter the breadcrumb this way:
 var breadCrumb = (sender as RadOpenFolderDialog).ChildrenOfType<RadBreadcrumb>().LastOrDefault();
            if (breadCrumb != null)
            {
                RadBreadcrumbBarItem bar = breadCrumb.ItemContainerGenerator.ContainerFromIndex(0) as RadBreadcrumbBarItem;

                DirectoryInfoWrapper bDrive = bar.Items.OfType<DirectoryInfoWrapper>().FirstOrDefault(dir => dir.Name.StartsWith("B"));
                bar.Items.Remove(bDrive);

                DirectoryInfoWrapper rDrive = bar.Items.OfType<DirectoryInfoWrapper>().FirstOrDefault(dir => dir.Name.StartsWith("R"));
                bar.Items.Remove(rDrive);
            }

To filter the treeview:

 var tree = (sender as RadOpenFolderDialog).ChildrenOfType<RadTreeView>().LastOrDefault();
            if (tree != null)
            {
                tree.LoadOnDemand += Tree_LoadOnDemand;
            }
   private void Tree_LoadOnDemand(object sender, Telerik.Windows.RadRoutedEventArgs e)
        {
            RadTreeViewItem clickedItem = e.OriginalSource as RadTreeViewItem;
            List<DirectoryInfoWrapper> dirsToRemove = new List<DirectoryInfoWrapper>();
            foreach (DirectoryInfoWrapper dir in clickedItem.Items.OfType<DirectoryInfoWrapper>())
            {
                // removing drives 'R:' and 'B:' for testing purposes.
                if (dir.Name.StartsWith("R") || dir.Name.StartsWith("B"))
                {
                    dirsToRemove.Add(dir);
                }
            }
            dirsToRemove.ForEach(dir => clickedItem.Items.Remove(dir));
        }
Completed
Last Updated: 11 May 2018 15:25 by ADMIN
Expose a ShowReadOnly boolean property which will indicate whether the dialog box contains a read-only checkbox and ReadOnlyChecked property indicating whether the read-only check box is selected
Completed
Last Updated: 05 Mar 2021 07:34 by ADMIN
Release LIB 2021.1.309 (9/03/2021)
There is a significant delay when opening a folder with a large number of children when a filter is applied compared to the native Windows dialogs. 
Completed
Last Updated: 09 Aug 2019 07:58 by ADMIN
Release LIB 2019.2.812 (8/12/2019)
The items inside the Tree Navigation Pane are not sorted in the same way as the native MS dialog. In our OpenFolderDialog when there is a file or folder name which starts with underscore "_" the file/folder is placed at the bottom of the tree navigation view. Looking at the tree from the MS dialog it is placed at the top.

In the Main Pane, the items are sorted correctly.
Completed
Last Updated: 26 May 2020 08:34 by ADMIN
Release LIB 2020.2.525 (5/26/2020)
 IndexOutOfRangeException is thrown when deleting files while the FileDialog is loading.
Completed
Last Updated: 11 Dec 2019 11:02 by ADMIN
Release R1 2020
Add a mechanism that allows show/hide the context menu that opens when you right click on an empty space in the dialog. For example, you should be able to hide the "New Folder" or "Properties" options.
1 2 3 4