Completed
Last Updated: 10 Oct 2018 10:41 by ADMIN
<telerik:RadDropDownButton DropDownWidth="400" DropDownHeight="400" VerticalAlignment="Center" Content="Dialog Button">
            <telerik:RadDropDownButton.DropDownContent>
                <dialogs:ExplorerControl Layout="Details"/>
            </telerik:RadDropDownButton.DropDownContent>
        </telerik:RadDropDownButton>

When the DropDown is opened Exception in FileBrowserGridView.cs is thrown.
Completed
Last Updated: 10 Oct 2018 10:43 by ADMIN
ExplorerControl is in DropDownContent  of DropDownButton.

Selecting multiple files in the explorer is not possible.
Completed
Last Updated: 21 Sep 2018 14:13 by ADMIN
ExplorerControl or FileDialog is opened with 

 StyleManager.ApplicationTheme = new Windows8TouchTheme();

On load exception is thrown:

 "Cannot find resource named 'BreadCrumbBarItemCustomStyle'.  Resource names are case sensitive"
Completed
Last Updated: 15 Oct 2020 14:24 by ADMIN
Release R3 2020 SP1
changing file system via rad file / save dialogs in opened in new app domain causes an application crash
"The calling thread cannot access this object because a different thread owns it."
Completed
Last Updated: 11 Mar 2019 07:34 by ADMIN
This behavior differs from the standard MS FileDialogs, where the expand arrow is not visible for such folders. 
Completed
Last Updated: 04 Feb 2021 08:58 by ADMIN
Release LIB 2021.1.208 (2/8/2021)
The exception is thrown when creating a new AutomationPeer for the RadBreadcrumbBar element.
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.
Completed
Last Updated: 19 Mar 2021 11:43 by ADMIN
Release LIB 2021.1.322 (22/03/2021)
"System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='Telerik.Windows.Controls.RadWindow', AncestorLevel='1''. BindingExpression:Path=WindowState; DataItem=null; target element is 'RadButton' (Name='PART_CloseButton'); target property is 'NoTarget' (type 'Object')" This error is reported in the Output on startup of a dialog. 
Completed
Last Updated: 26 Apr 2021 09:48 by ADMIN
Release LIB 2021.1.426 (26/04/2021)
A COMException with error message 'Exception from HRESULT: 0x80270000' is thrown when canceling the delete operation of a locked file. The operation needs to be invoked by pressing the Delete key of the keyboard - deleting the file by using the context menu works as expected.
Completed
Last Updated: 19 Apr 2018 14:30 by ADMIN
If you open a folder, but you doesn't select a child folder from the list shown in the explorer, when you click on the Open button the FileName property is empty.

To work this around you can create a custom RadOpenFolderDialog and override its GetViewModel. Then expose a public property with the view model. And when you close the dialog, check the IsDirectirySelected property of the view model. If so, return the Path property of the view model. Otherwise, use the standard approach and get the folder via the dialog's FileName property. 

public class CustomOpenFolderDialog : RadOpenFolderDialog
{
    public OpenFolderDialogViewModel ViewModel { get; internal set; }

    protected override OpenFolderDialogViewModel GetViewModel()
    {
        this.ViewModel = base.GetViewModel();            
        return this.ViewModel;
    }
}

---------------------------------

CustomOpenFolderDialog openFolderDialog = new CustomOpenFolderDialog();
openFolderDialog.Owner = this;
openFolderDialog.ShowDialog();
if (openFolderDialog.DialogResult == true)
{
     string folderName = String.Empty;
     if (!openFolderDialog.ViewModel.IsDirectorySelected)
     {
        folderName = openFolderDialog.ViewModel.Path;
     }
     else
     {
         folderName = openFolderDialog.FileName;
     }                
}
Completed
Last Updated: 13 Oct 2021 14:29 by ADMIN
Release LIB 2021.3.1018 (18 Oct 2021)
When the ExplorerControl is shown in a scenario with an excel addin project, the filtering does not work. 
Completed
Last Updated: 16 Dec 2021 06:35 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)

An exception is thrown when the ShowNetworkLocations property is set to false.

System.ArgumentNullException: Value cannot be null. (Parameter 'value')
   at System.String.StartsWith(String value)
   at Telerik.Windows.Controls.FileDialogs.Helpers.PathHelper.CapitalizeNetworkPath(String path)
   at Telerik.Windows.Controls.FileDialogs.ExplorerControl.BringItemIntoView(DirectoryBaseWrapper itemToBring)
   at Telerik.Windows.Controls.FileDialogs.ExplorerControl.BringCurrentDirIntoView()
   at Telerik.Windows.Controls.FileDialogs.ExplorerControl.MainNavigationPaneLoaded(Object sender, RoutedEventArgs e)

Completed
Last Updated: 17 May 2019 08:08 by ADMIN
Release LIB 2019.2.520 (05/20/2019)

Hello.

I've created buttons that are bound to FileDialogCommands for sending commands to an ExplorerControl, as shown here:

https://docs.telerik.com/devtools/wpf/controls/radfiledialogs/features/commands

 

Everything works when the ExplorerControl is visible.  However, if the ExplorerControl's Visibility is set to Collapsed (which I need based on a condition), the Command bindings on the buttons throw the below error:

System.NullReferenceException: Object reference not set to an instance of an object.
   at Telerik.Windows.Controls.FileDialogs.ExplorerControl.CanExecuteHelper(Object sender)

 

The UserControl that hosts the ExplorerControl is being imported through MEF.  I don't know if that's a factor.

Either way, it looks like a null check might be needed for the InternalViewModel property.

Completed
Last Updated: 14 Jun 2022 13:18 by ADMIN
Release R2 2022 SP1
When DetailsView is set from the drop-down, the Date Modified column is not updated. For example, if the dialog is opened at a specific place and we modified a file (edit, replace) from an external place (source), Date Modified does not reflect the changed date.
Completed
Last Updated: 01 Oct 2019 10:52 by ADMIN
Release LIB 2019.2.812
An InvalidOperationException is thrown with the following message: "Cyclic reference found while evaluating the ThemeStyle property on element ..."
Completed
Last Updated: 14 Feb 2018 16:03 by ADMIN
Open/Save File/Folder dialog with implicit styles.

Change a theme dynamically by merging resource dictionary containing the styles for Office2016/ Office2016Touch / Fluent Theme.

Show the dialog and open the details grid (view). XamlParseException occurs - cannot find the resource "GridViewValidationToolTipTemplate"
Completed
Last Updated: 23 Sep 2022 08:10 by ADMIN
Release LIB 2022.3.926 (26 Sep 2022)
Currently, long file names are truncated when the view is either List, Small Icons, or Tiles
Completed
Last Updated: 15 Feb 2018 14:45 by ADMIN
Completed
Last Updated: 26 Jul 2019 10:19 by ADMIN
When the layout type is set to Details the rename with the slow double click doesn't work. The selected file/folder doesn't enter edit mode.