Unplanned
Last Updated: 15 Oct 2024 15:14 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: FileDialogs
Type: Feature Request
1
Add API that allows to customize the files/folders search action. Currently, the searching happens on all subfolders starting from the current directory. Allow the user to change this and search only in the current folder.
Completed
Last Updated: 07 May 2018 10:58 by ADMIN
ADMIN
Created by: Martin
Comments: 1
Category: FileDialogs
Type: Feature Request
0
Add localization support for RadFileDialogs.
Completed
Last Updated: 09 Jan 2018 16:21 by ADMIN
SaveFileDialog does not open overwrite confirmation message box if the file name is typed with the default extension at the end.

For example, you have "empty.txt" file on the desktop. You open SaveFileDialog, type empty, select TXT extension on the filters list on the bottom. Remove the .txt from the file name (if it is there) and press Save. 

Expected: Confirmation window for overwriting the file should be opened.

Actual: No confirmation window opens.
Completed
Last Updated: 02 Jan 2018 12:16 by ADMIN
Overwriting file with extension not registered in the file system but present in the Extensions Filter ComboBox might result in duplication of the extension in the resulting FileName.

For example you have empty.stp file on your desktop.

Choose the file with SaveFileDialog , chose the STP file extenion in the Filter combo box.

Press Save.

The resulting FileName of the dialog will be empty.stp.stp but it should be empty.stp.

Available in LIB Version 2017.3.1225.
Completed
Last Updated: 15 Feb 2018 15:02 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: FileDialogs
Type: Bug Report
0
If extension filter contains *.TXT but the file is named File1.txt, it is filtered in the main pane of the File/FolderDialogs. It shouldn't be filtered, jut like it is in MS Win 32 File dialogs.
Completed
Last Updated: 15 Feb 2018 14:45 by ADMIN
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: 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;
     }                
}
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: 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: 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: 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: 11 Oct 2018 13:08 by ADMIN
For example Filter is "XAML CS Files (*.xaml.cs)|*.xaml.cs"

MS Win32 OpenFileDialog filter files correctly to show only xaml.cs files.

RadOpenFile/SaveFileDialog does not show the xaml.cs files which is wrong.
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: 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: 05 Jul 2019 05:37 by ADMIN
Release LIB 2019.2.708 (7/8/2019)
OpenFile/SaveFile dialog or ExplorerControl with Multiselect, Details View and Filter applied.

Click on a file / fodler in gridview - argument exception occurs.

"Property FileSystemInfo is not defined for type System.Object."
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.
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: 02 Mar 2020 07:47 by ADMIN
Release LIB 2020.1.302 (03/02/2020)
The FileName property is sometimes set wrong after a drive is selected from the Tree Navigation Pane and the Open button is clicked.