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.
Unplanned
Last Updated: 27 Jul 2021 08:12 by Ludwig
Add support for respecting the Group Policy settings in order to hide the specified drives.
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: 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: 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: 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));
        }
Unplanned
Last Updated: 12 Sep 2018 12:20 by ADMIN
Currently RadFileDialogs do not provide such tooltips when hovering files and folders.

Check the attached image for clarification.

Unplanned
Last Updated: 29 May 2018 07:51 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: FileDialogs
Type: Feature Request
2
This might be a public  event (File/FolderSelecting) or property (IsSelectable) of the FileSystemInfoWrapper but user will need a mechanism to set it (control over the file/folder wrapper creation).

For example some files might be visible and not filtered in main pane but should be disabled for user selection.
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.
Unplanned
Last Updated: 27 Feb 2020 10:59 by ADMIN
Add the option to display folder shortcuts in OpenFolderDialog and to dereference links.
Unplanned
Last Updated: 27 May 2019 11:18 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: FileDialogs
Type: Feature Request
2
Introduce a mechanism to allow executing search manually. Similar to the RadGridViewCommands.SearchByText command.
Completed
Last Updated: 10 Dec 2019 14:55 by ADMIN
When a link to a folder is selected and the Open button is clicked, the RadOpenFileDialog does not navigate to that folder. 
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.
Unplanned
Last Updated: 19 Aug 2019 08:36 by Robert
RadOpenFileDialog does not update FilterIndex

The RadOpenFileDialog has a property FilterIndex to get or set the index of the currently selected filter. Setting the index works fine. However, the property is not updated when the user selects a different filter. FilterIndex will always keep the value that was initially set. This is quite annoying, as we want that our customers find their most recently used filter index pre-selected.

The same problem exists for InitialSelectedLayout, which is never update either. .Net Framework's OpenFileDialog restores the most recently selected view automatically.

FileDialogs version is 2019.1.116.45
Completed
Last Updated: 01 Nov 2019 08:35 by ADMIN
Release LIB 2019.3.1104

Using RadOpenFileDialog reports a lot of binding errors. #26 seems to happen all the time, whereas #40 is related to the length of the initial directory.

The dialog is working, but those errors are really disturbing. The more false binding errors we get, the higher the possibility is that we miss real errors. Suppressing them by setting the error level to Critical is not a solution, as it will suppress real errors as well.

 

System.Windows.Data Error: 26 : ItemTemplate and ItemTemplateSelector are ignored for items already of the ItemsControl's container type; Type='RadWatermarkTextBox'
System.Windows.Data Warning: 40 : BindingExpression path error: 'IsHidden' property not found on 'object' ''OpenFileDialogViewModel' (HashCode=39129256)'. BindingExpression:Path=IsHidden; DataItem='OpenFileDialogViewModel' (HashCode=39129256); target element is 'RadBreadcrumbBarItem' (Name=''); target property is 'Visibility' (type 'Visibility')
System.Windows.Data Warning: 40 : BindingExpression path error: 'IsSystemHiddenActual' property not found on 'object' ''OpenFileDialogViewModel' (HashCode=39129256)'. BindingExpression:Path=IsSystemHiddenActual; DataItem='OpenFileDialogViewModel' (HashCode=39129256); target element is 'RadBreadcrumbBarItem' (Name=''); target property is 'Visibility' (type 'Visibility')
System.Windows.Data Warning: 40 : BindingExpression path error: 'IsHidden' property not found on 'object' ''OpenFileDialogViewModel' (HashCode=39129256)'. BindingExpression:Path=IsHidden; DataItem='OpenFileDialogViewModel' (HashCode=39129256); target element is 'RadBreadcrumbBarItem' (Name=''); target property is 'Visibility' (type 'Visibility')
System.Windows.Data Warning: 40 : BindingExpression path error: 'IsSystemHiddenActual' property not found on 'object' ''OpenFileDialogViewModel' (HashCode=39129256)'. BindingExpression:Path=IsSystemHiddenActual; DataItem='OpenFileDialogViewModel' (HashCode=39129256); target element is 'RadBreadcrumbBarItem' (Name=''); target property is 'Visibility' (type 'Visibility')
System.Windows.Data Error: 26 : ItemTemplate and ItemTemplateSelector are ignored for items already of the ItemsControl's container type; Type='RadBreadcrumbBarItem'

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.
Unplanned
Last Updated: 14 Jul 2020 09:29 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: FileDialogs
Type: Feature Request
2
Add shortcuts for accessing different elements on the UI - the search bar, the file name input, the buttons, etc. 
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. 
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.