Completed
Last Updated: 18 Dec 2020 15:21 by ADMIN
Release LIB 2020.3.1221 (12/21/2020)
If a file with the same name set as the FileName is contained in the output directory of the project, when clicking the Save button in the InitialDirectory, the file is saved in the output directory instead of the current directory.
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. 
Completed
Last Updated: 09 Aug 2021 14:48 by ADMIN
Release LIB 2021.2.809 (9 Aug 2021)
FileDialog with ExpandToCurrentDirectory set to false and a network location set as initial directory.
On Load, Breadcrumb shows only Network node but it should actually show the full path to the requested folder. Then this leads to inability to navigate upward with buttons next to breadcrumb bar.
Completed
Last Updated: 21 Jan 2022 16:44 by ADMIN
Some network shared folders cannot be access with expanding network tree in the explorer.
Entering such shared folder in breadccrumb might result in the folling: child folders of target folder are briefly visible 
for some short period of time then breadcrumb and tree fallbacks selection to a parent folder.
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.
Completed
Last Updated: 06 Jun 2022 08:28 by ADMIN
Release LIB 2022.2.606 (06 June 2022)
Created by: Flavio
Comments: 1
Category: FileDialogs
Type: Bug Report
1
The search functionality of the file dialogs does not display any results when the project targets the .NET 6 framework.
Completed
Last Updated: 10 Jun 2022 11:02 by ADMIN
Release LIB 2022.2.613 (13 June 2022)
Currently, the resource key's value for the Italian culture is "ANNULLA", instead of "Annulla".
Won't Fix
Last Updated: 21 Apr 2023 13:54 by ADMIN
A binding error appears in the VS Output pane on startup of the RadOpenFileDialog. The error states the following:
System.Windows.Data Error: 26 : ItemTemplate and ItemTemplateSelector are ignored for items already of the ItemsControl's container type RadBreadcrumbBarItem
The error can be ignored because it doesn't break the file dialog functionalities.
Completed
Last Updated: 22 Jul 2022 16:43 by ADMIN
Release LIB 2022.2.725 (25 July 2022)
The following output binding error is printed - System.Windows.Data Error: 26 : ItemTemplate and ItemTemplateSelector are ignored for items already of the ItemsControl's container type; Type='RadWatermarkTextBox'.
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: 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.
Completed
Last Updated: 29 May 2023 08:38 by ADMIN
Release R2 2023

ArithmeticException is thrown on RadSaveFileDialog's ShowDialog call, when the device model profile of the OS (from the Color Management menu) is set to sRGB virtual device model profile.

The profile should be set through the Change system defaults menu. This setting is accessed by opening the Color Management menu in the OS, then select the Advanced tab, then click on Change system defaults... In the newly opened dialog click Advanced again and change the Device profile to sRGB virtual device model profile.

This is actually a bug in the WPF framework that is reported here.

The important part of the exception stacktrace is the following:

System.ArithmeticException: Overflow or underflow in the arithmetic operation.
--- End of inner exception stack trace ---
at System.Windows.Media.Imaging.ColorConvertedBitmap.FinalizeCreation()
at System.Windows.Media.Imaging.ColorConvertedBitmap..ctor(BitmapSource source, ColorContext sourceColorContext, ColorContext destinationColorContext, PixelFormat format)
at System.Windows.Media.Imaging.BitmapSource.CreateCachedBitmap(BitmapFrame frame, BitmapSourceSafeMILHandle wicSource, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, BitmapPalette palette)
at System.Windows.Media.Imaging.BitmapFrameDecode.FinalizeCreation()
at System.Windows.Media.Imaging.BitmapFrameDecode..ctor(Int32 frameNumber, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, BitmapDecoder decoder)
at System.Windows.Media.Imaging.BitmapDecoder.SetupFrames(BitmapDecoder decoder, ReadOnlyCollection`1 frames)
at System.Windows.Media.Imaging.BitmapDecoder.get_Frames()
at System.Windows.Media.Imaging.BitmapFrame.CreateFromUriOrStream(Uri baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, RequestCachePolicy uriCachePolicy)
at System.Windows.Media.ImageSourceConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value)
at System.Windows.Baml2006.TypeConverterMarkupExtension.ProvideValue(IServiceProvider serviceProvider)


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.

Completed
Last Updated: 03 Sep 2018 13:40 by ADMIN
Create a property that allows to show the UNC name instead of just the drive's letter or change the implementation of the control so this can be achieved by code.
Unplanned
Last Updated: 10 Nov 2017 12:13 by ADMIN
Completed
Last Updated: 15 Feb 2018 11:30 by Sebastien
Completed
Last Updated: 25 Jul 2022 09:51 by ADMIN
Release LIB 2022.2.725 (25 July 2022)
A binding error is thrown in RadOpenFolderDialog when it is shown.

 System.Windows.Data Error: 40 : BindingExpression path error: 'IsSearchActive' property not found on 'object' ''OpenFolderDialogViewModel' (HashCode=65514185)'. BindingExpression:Path=IsSearchActive; DataItem='OpenFolderDialogViewModel' (HashCode=65514185); target element is 'FileDialogSearchPane' (Name=''); target property is 'IsSearchViewActive' (type 'Boolean')